From 320ba7e6eacac6ab24805d2bff797cfcef0d81c2 Mon Sep 17 00:00:00 2001 From: Andromeda <46562212+DevAndromeda@users.noreply.github.com> Date: Sat, 7 Aug 2021 12:28:12 +0545 Subject: [PATCH] ci: run on node v16 only --- .github/workflows/eslint.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index 90c954a..bd277e6 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -16,19 +16,16 @@ on: - '!gh-pages' jobs: test: - strategy: - matrix: - node: ['14', '16'] - name: ESLint (Node v${{ matrix.node }}) + name: ESLint (Node v16) runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 - - name: Install Node v${{ matrix.node }} + - name: Install Node v16 uses: actions/setup-node@v1 with: - node-version: ${{ matrix.node }} + node-version: 16 - name: Install dependencies run: npm install