We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15e7a1e commit adcb4caCopy full SHA for adcb4ca
.github/workflows/ci.yml
@@ -15,7 +15,7 @@ jobs:
15
strategy:
16
matrix:
17
operating-system: [macos-latest, ubuntu-latest]
18
- node-version: [20]
+ node-version: [16, 18, 20]
19
name: Node.js ${{ matrix.node-version }} Test on ${{ matrix.operating-system }}
20
21
steps:
@@ -24,7 +24,12 @@ jobs:
24
uses: actions/setup-node@v3
25
with:
26
node-version: ${{ matrix.node-version }}
27
- - run: npm install
+ - name: Install dependencies
28
+ run: |
29
+ if [ "${{ matrix.node-version }}" = "16" ]; then
30
+ npm install eslint@8.56.0 @eslint/eslintrc@2.1.4 @eslint/js@8.56.0
31
+ fi
32
+ npm install
33
- run: npm run lint
34
# - uses: codecov/codecov-action@v3
35
# with:
0 commit comments