Skip to content

Commit b640824

Browse files
committed
ci: remove node 12 due to semantic-release requirements
1 parent d7831f4 commit b640824

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/nodejs.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [12.x, 14.x, 16.x]
13+
node-version: [14.x, 16.x]
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Use Node.js ${{ matrix.node-version }}
@@ -28,7 +28,7 @@ jobs:
2828
env:
2929
CI: true
3030
- name: Send codecov.io stats
31-
if: matrix.node-version == '12.x'
31+
if: matrix.node-version == '14.x'
3232
run: bash <(curl -s https://codecov.io/bash) || echo ''
3333

3434
publish:
@@ -37,10 +37,10 @@ jobs:
3737
runs-on: ubuntu-latest
3838
steps:
3939
- uses: actions/checkout@v2
40-
- name: Use Node.js 12
40+
- name: Use Node.js 14
4141
uses: actions/setup-node@v1
4242
with:
43-
node-version: 12.x
43+
node-version: 14.x
4444
- name: Install node_modules
4545
run: yarn install
4646
- name: Build

0 commit comments

Comments
 (0)