Skip to content

Commit b640824

Browse files
committed
eslint -v8 and v9 for actions
1 parent 9b17f00 commit b640824

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,16 @@ jobs:
1414
strategy:
1515
matrix:
1616
node-version: [16.x, 18.x, 20.x]
17+
eslint-version: [8.x, 9.x]
1718

1819
steps:
1920
- uses: actions/checkout@v2
2021
- name: Use Node.js ${{ matrix.node-version }}
2122
uses: actions/setup-node@v1
2223
with:
2324
node-version: ${{ matrix.node-version }}
25+
- name: Install ESLint ${{ matrix.eslint-version }}
26+
run: npm install eslint@${{ matrix.eslint-version }}
2427
- run: npm install
2528
- run: npm test
2629
env:

0 commit comments

Comments
 (0)