-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE: Drop support for ESLint 5
- Loading branch information
Showing
3 changed files
with
8 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,7 +68,7 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
node-version: [12.x, 14.x, 16.x] | ||
eslint-version: [5, 6, 7] | ||
eslint-version: [6, 7] | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
@@ -83,12 +83,11 @@ jobs: | |
yarn | ||
yarn add --dev eslint@${{ matrix.eslint-version }} | ||
- name: run tests | ||
# only collect coverage on eslint versions that support the suggestions api | ||
run: yarn test --coverage ${{ matrix.eslint-version >= 6 }} | ||
run: yarn test --coverage | ||
env: | ||
CI: true | ||
- uses: codecov/[email protected] | ||
if: ${{ matrix.eslint-version >= 6 }} | ||
if: always() | ||
test-os: | ||
name: Test on ${{ matrix.os }} using Node.js LTS | ||
needs: prepare-yarn-cache | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters