From 2cbff8d8c8bdd697cef7280c0ead4f75e3dd2001 Mon Sep 17 00:00:00 2001 From: alex Date: Sat, 5 Sep 2026 09:23:44 +0000 Subject: [PATCH] Replace setup-node with direct Node install --- .github/workflows/deploy-test.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy-test.yml b/.github/workflows/deploy-test.yml index 0a38208..d7870e6 100644 --- a/.github/workflows/deploy-test.yml +++ b/.github/workflows/deploy-test.yml @@ -33,9 +33,10 @@ jobs: ref: ${{ github.event.inputs.branch || github.ref }} - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: ${{ env.NODE_VERSION }} + run: | + NODE_VER=${{ env.NODE_VERSION }} + curl -fsSL "https://nodejs.org/dist/v${NODE_VER}.0.0/node-v${NODE_VER}.0.0-linux-x64.tar.xz" | tar -xJ -C /usr/local --strip-components=1 + node --version - name: Generate version id: version @@ -223,9 +224,10 @@ jobs: run: echo "Using pre-populated workspace" - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: ${{ env.NODE_VERSION }} + run: | + NODE_VER=${{ env.NODE_VERSION }} + curl -fsSL "https://nodejs.org/dist/v${NODE_VER}.0.0/node-v${NODE_VER}.0.0-linux-x64.tar.xz" | tar -xJ -C /usr/local --strip-components=1 + node --version - name: Install test dependencies working-directory: tests