From 52f4c438023774cbf38ec6a2290eeb2ce7341b86 Mon Sep 17 00:00:00 2001 From: dapplion <35266934+dapplion@users.noreply.github.com> Date: Mon, 5 Apr 2021 21:10:31 +0200 Subject: [PATCH] Run tests on node 14 too --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 250b047..0bbd048 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,12 +6,15 @@ jobs: tests: name: Tests runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + node: [12, 14] steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: "12.x" - registry-url: "https://registry.npmjs.org" + node-version: ${{matrix.node}} - name: Install deps run: yarn - name: Lint