From baccd989a77d41d1ed15857b5b19a7a653bfe50e Mon Sep 17 00:00:00 2001 From: Marc Pichler Date: Thu, 5 Dec 2024 20:41:12 +0100 Subject: [PATCH] ci: run browser tests on Node.js 22 (#2587) --- .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 4e6b92b3fd..58b1610abc 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 @@ -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