We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bf6500 commit b8ff6e9Copy full SHA for b8ff6e9
.github/workflows/nodejs.yml
@@ -25,7 +25,7 @@ jobs:
25
- name: Code linting
26
uses: actions/setup-node@v2
27
with:
28
- node-version: 12.x
+ node-version: 14.x
29
cache: 'npm'
30
- run: npm ci
31
- run: npm run lint
@@ -45,11 +45,13 @@ jobs:
45
# uses: romeovs/lcov-reporter-action@v0.2.11
46
tests:
47
name: Unit tests
48
+ needs:
49
+ - lint
50
runs-on: ubuntu-latest
51
timeout-minutes: 1
52
strategy:
53
matrix:
- node-version: [12.x, 14.x, 16.x, 18.x]
54
+ node-version: [14.x, 16.x, 18.x]
55
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
56
steps:
57
- uses: actions/checkout@v3
0 commit comments