From 2e6eddd01263aa12e26893e567be84f3df3e9cdf Mon Sep 17 00:00:00 2001 From: Linus Norton Date: Mon, 11 Sep 2023 15:30:26 +0100 Subject: [PATCH] fix build --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ffe483..f928b36 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,11 +14,12 @@ jobs: strategy: matrix: version: ['14', '16', '18', '20'] + fail-fast: false steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: {{ matrix.version }} + node-version: ${{ matrix.version }} cache: npm - run: npm install - run: npm test