Skip to content

Commit 0ee1f84

Browse files
authored
fix: stop testing ESLint 5 (#893)
BREAKING CHANGE: Drop support for ESLint 5
1 parent 13c041a commit 0ee1f84

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/nodejs.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
fail-fast: false
6969
matrix:
7070
node-version: [12.x, 14.x, 16.x]
71-
eslint-version: [5, 6, 7]
71+
eslint-version: [6, 7]
7272
runs-on: ubuntu-latest
7373

7474
steps:
@@ -83,12 +83,11 @@ jobs:
8383
yarn
8484
yarn add --dev eslint@${{ matrix.eslint-version }}
8585
- name: run tests
86-
# only collect coverage on eslint versions that support the suggestions api
87-
run: yarn test --coverage ${{ matrix.eslint-version >= 6 }}
86+
run: yarn test --coverage
8887
env:
8988
CI: true
9089
- uses: codecov/[email protected]
91-
if: ${{ matrix.eslint-version >= 6 }}
90+
if: always()
9291
test-os:
9392
name: Test on ${{ matrix.os }} using Node.js LTS
9493
needs: prepare-yarn-cache

0 commit comments

Comments
 (0)