From 8755f35936d6d9e2cd9e2d405f4f113437309ca8 Mon Sep 17 00:00:00 2001 From: Marc Pichler Date: Thu, 5 Dec 2024 17:17:18 +0100 Subject: [PATCH 1/2] ci: run browser tests on Node.js 22 --- .github/workflows/unit-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 4e6b92b3fd..82df68e51d 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -182,7 +182,7 @@ jobs: strategy: fail-fast: false matrix: - node: ["16"] + node: ["22"] runs-on: ubuntu-latest env: NPM_CONFIG_UNSAFE_PERM: true From 949a2e936c22be3b046b6fb95f0616e114b91c75 Mon Sep 17 00:00:00 2001 From: Marc Pichler Date: Thu, 5 Dec 2024 17:19:35 +0100 Subject: [PATCH 2/2] fixup! ci: run browser tests on Node.js 22 --- .github/workflows/unit-test.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 82df68e51d..58b1610abc 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -195,9 +195,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: Download Build Artifacts