From 8c237612235549661a8a0e63f18af9a33e492ba6 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 For preparing eslint v8, add eslint matrix(v7, v8) on ci. refs #14 --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e72bd81..9e8b6a8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,12 +5,15 @@ 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 }} - run: | npm install --silent npm run lint