We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13c041a commit 0ee1f84Copy full SHA for 0ee1f84
.github/workflows/nodejs.yml
@@ -68,7 +68,7 @@ jobs:
68
fail-fast: false
69
matrix:
70
node-version: [12.x, 14.x, 16.x]
71
- eslint-version: [5, 6, 7]
+ eslint-version: [6, 7]
72
runs-on: ubuntu-latest
73
74
steps:
@@ -83,12 +83,11 @@ jobs:
83
yarn
84
yarn add --dev eslint@${{ matrix.eslint-version }}
85
- name: run tests
86
- # only collect coverage on eslint versions that support the suggestions api
87
- run: yarn test --coverage ${{ matrix.eslint-version >= 6 }}
+ run: yarn test --coverage
88
env:
89
CI: true
90
- uses: codecov/[email protected]
91
- if: ${{ matrix.eslint-version >= 6 }}
+ if: always()
92
test-os:
93
name: Test on ${{ matrix.os }} using Node.js LTS
94
needs: prepare-yarn-cache
0 commit comments