From d9f36a171f33412c7f0c7f576a4d7b0810ef81b5 Mon Sep 17 00:00:00 2001 From: "Matt (Murahashi Kenichi)" Date: Wed, 8 Dec 2021 11:03:23 +0900 Subject: [PATCH] chore(actions): run eslint v8 (allow failure) refs #14 --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e72bd81..67ad493 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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' }}