From 8e17ea46c563567bb8f8f9f4d1383efb8b94c80d Mon Sep 17 00:00:00 2001 From: Marc Pichler Date: Thu, 21 Mar 2024 12:57:51 +0100 Subject: [PATCH] chore: use node 18 in browser test setup --- .github/workflows/unit-test.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 4894c8f400..76627c7825 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -146,7 +146,7 @@ jobs: strategy: fail-fast: false matrix: - node: ["14"] + node: ["18"] runs-on: ubuntu-latest env: NPM_CONFIG_UNSAFE_PERM: true @@ -159,9 +159,6 @@ jobs: - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} - - name: Update npm to a version that supports workspaces (v7 or later) - if: ${{ matrix.node < 16 }} - run: npm install -g npm@9 # npm@9 supports node >=14.17.0 - name: Install run: npm ci - name: Build