Skip to content

Commit df995ff

Browse files
amilajackclaude
andcommitted
chore: drop ESLint 8 from CI test matrix
Only test against ESLint 9 and 10, removing ESLint 8 support from CI. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent cebfaee commit df995ff

1 file changed

Lines changed: 2 additions & 11 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
eslint-version: [8, 9, 10]
8+
eslint-version: [9, 10]
99
name: Test (Node 22, ESLint ${{ matrix.eslint-version }})
1010
steps:
1111
- name: Check out Git repository
@@ -20,13 +20,4 @@ jobs:
2020
- name: Install ESLint ${{ matrix.eslint-version }}
2121
run: npm i -D eslint@${{ matrix.eslint-version }} --legacy-peer-deps
2222
- name: Run tests
23-
run: |
24-
if [ "${{ matrix.eslint-version }}" = "8" ]; then
25-
npm test
26-
else
27-
npm run build && npm run spec -- --testPathIgnorePatterns="test/e2e-repo.spec.ts|test/flat-config-typing.spec.ts"
28-
fi
29-
- name: Run e2e tests
30-
# Skip e2e tests for ESLint 9+ due to API incompatibilities
31-
if: matrix.eslint-version == '8'
32-
run: npm run spec:e2e
23+
run: npm run build && npm run spec -- --testPathIgnorePatterns="test/e2e-repo.spec.ts|test/flat-config-typing.spec.ts"

0 commit comments

Comments
 (0)