File tree 1 file changed +7
-0
lines changed
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -102,10 +102,17 @@ jobs:
102
102
yarn
103
103
yarn add --dev eslint@${{ matrix.eslint-version }} @typescript-eslint/eslint-plugin@${{ matrix.ts-eslint-plugin-version }} @typescript-eslint/parser@${{ matrix.ts-eslint-plugin-version }}
104
104
- name : run tests
105
+ if : ${{ matrix.eslint-version <= 8 }}
105
106
# only collect coverage on eslint versions that support dynamic import
106
107
run : yarn test --coverage ${{ matrix.eslint-version >= 8 }}
107
108
env :
108
109
CI : true
110
+ - name : run tests
111
+ if : ${{ matrix.eslint-version == 'next' }}
112
+ # ESLint v9 requires us to use flat configs, so we can't run linting
113
+ run : yarn test --coverage --ignore-projects lint
114
+ env :
115
+ CI : true
109
116
- uses : codecov/codecov-action@v3
110
117
if : ${{ matrix.eslint-version >= 8 }}
111
118
test-ubuntu :
You can’t perform that action at this time.
0 commit comments