Skip to content

Commit 0b30845

Browse files
authored
ci: ensure ESLint works with at least 9.15.0 and pre-releases (#365)
1 parent 58ca579 commit 0b30845

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,14 @@ jobs:
2828
fail-fast: false
2929
matrix:
3030
os: [ubuntu-latest]
31+
eslint: [9.15.0, 9.x, ^10.0.0-rc.0]
3132
node: [25.x, 24.x, 22.x, 20.x, "20.19.0"]
3233
include:
3334
- os: windows-latest
35+
eslint: "latest"
3436
node: "lts/*"
3537
- os: macOS-latest
38+
eslint: "latest"
3639
node: "lts/*"
3740
runs-on: ${{ matrix.os }}
3841
steps:
@@ -42,6 +45,8 @@ jobs:
4245
node-version: ${{ matrix.node }}
4346
- name: Install dependencies
4447
run: npm install
48+
- name: Install ESLint@${{ matrix.eslint }}
49+
run: npm install -D eslint@${{ matrix.eslint }}
4550
- name: Run tests
4651
run: npm run test
4752
test_types:

0 commit comments

Comments
 (0)