From be8d28a1582a04b79216ba5fb8952fcd76ae443f Mon Sep 17 00:00:00 2001 From: Charlotte Vermandel Date: Thu, 19 Aug 2021 23:08:20 +0200 Subject: [PATCH] Specify node version in ci at the right place --- .github/workflows/test.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index eb5df33..23c292a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,14 +28,13 @@ jobs: run: yarn test linter_check: runs-on: ubuntu-latest - strategy: - matrix: - node: ["14"] name: linter test steps: - uses: actions/checkout@v2 - name: Setup node uses: actions/setup-node@v1 + with: + node-version: 14 - name: Install dependencies run: yarn --dev - name: Run style check