Skip to content

Commit 5960c0b

Browse files
committed
ci: remove node 12 due to semantic-release requirements
1 parent 6cefeb8 commit 5960c0b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/nodejs.yml

Lines changed: 7 additions & 7 deletions
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, 14, 16]
13+
node-version: [14, 16]
1414
fail-fast: false
1515
steps:
1616
- uses: actions/checkout@v2
@@ -25,19 +25,19 @@ jobs:
2525
env:
2626
CI: true
2727
- name: Test – Eslint
28-
if: ${{ always() && matrix.node-version == '12' }}
28+
if: ${{ always() && matrix.node-version == '14' }}
2929
run: yarn eslint
3030
- name: Test – TSCheck
31-
if: ${{ always() && matrix.node-version == '12' }}
31+
if: ${{ always() && matrix.node-version == '14' }}
3232
run: yarn tscheck
3333
- name: Publish Test Report
34-
if: ${{ always() && matrix.node-version == '12' }}
34+
if: ${{ always() && matrix.node-version == '14' }}
3535
uses: mikepenz/action-junit-report@v2
3636
with:
3737
check_name: JUnit Annotations for Node ${{ matrix.node-version }}
3838
report_paths: '**/coverage/junit/**/*.xml'
3939
- name: Send codecov.io stats
40-
if: matrix.node-version == '12'
40+
if: matrix.node-version == '14'
4141
run: bash <(curl -s https://codecov.io/bash) || echo ''
4242

4343
publish:
@@ -46,10 +46,10 @@ jobs:
4646
runs-on: ubuntu-latest
4747
steps:
4848
- uses: actions/checkout@v2
49-
- name: Use Node.js 12
49+
- name: Use Node.js 14
5050
uses: actions/setup-node@v2
5151
with:
52-
node-version: 12
52+
node-version: 14
5353
- name: Install node_modules
5454
run: yarn install
5555
- name: Build

0 commit comments

Comments
 (0)