Skip to content

Commit

Permalink
chore(actions): run eslint v8 (allow failure)
Browse files Browse the repository at this point in the history
refs #14
  • Loading branch information
Matt (Murahashi Kenichi) committed Dec 8, 2021
1 parent 640139f commit d9f36a1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -5,13 +5,18 @@ jobs:
strategy:
matrix:
node: [12.x, 14.x, 16.x]
eslint: [7, 8]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Use ESLint ${{ matrix.eslint }}
run: npm install eslint@${{ matrix.eslint }}
continue-on-error: ${{ matrix.eslint == '8' }}
- run: |
npm install --silent
npm run lint
npm run test
continue-on-error: ${{ matrix.eslint == '8' }}

0 comments on commit d9f36a1

Please sign in to comment.