Skip to content

Commit b8ff6e9

Browse files
committed
drop node 12 from test matrix
1 parent 9bf6500 commit b8ff6e9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/nodejs.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Code linting
2626
uses: actions/setup-node@v2
2727
with:
28-
node-version: 12.x
28+
node-version: 14.x
2929
cache: 'npm'
3030
- run: npm ci
3131
- run: npm run lint
@@ -45,11 +45,13 @@ jobs:
4545
# uses: romeovs/lcov-reporter-action@v0.2.11
4646
tests:
4747
name: Unit tests
48+
needs:
49+
- lint
4850
runs-on: ubuntu-latest
4951
timeout-minutes: 1
5052
strategy:
5153
matrix:
52-
node-version: [12.x, 14.x, 16.x, 18.x]
54+
node-version: [14.x, 16.x, 18.x]
5355
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
5456
steps:
5557
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)