We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7831f4 commit b640824Copy full SHA for b640824
.github/workflows/nodejs.yml
@@ -10,7 +10,7 @@ jobs:
10
runs-on: ubuntu-latest
11
strategy:
12
matrix:
13
- node-version: [12.x, 14.x, 16.x]
+ node-version: [14.x, 16.x]
14
steps:
15
- uses: actions/checkout@v2
16
- name: Use Node.js ${{ matrix.node-version }}
@@ -28,7 +28,7 @@ jobs:
28
env:
29
CI: true
30
- name: Send codecov.io stats
31
- if: matrix.node-version == '12.x'
+ if: matrix.node-version == '14.x'
32
run: bash <(curl -s https://codecov.io/bash) || echo ''
33
34
publish:
@@ -37,10 +37,10 @@ jobs:
37
38
39
40
- - name: Use Node.js 12
+ - name: Use Node.js 14
41
uses: actions/setup-node@v1
42
with:
43
- node-version: 12.x
+ node-version: 14.x
44
- name: Install node_modules
45
run: yarn install
46
- name: Build
0 commit comments