File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
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"
You can’t perform that action at this time.
0 commit comments