Replace setup-node with direct Node install
CI - Test & Build / Lint & Type Check (push) Canceled after 0s
CI - Test & Build / Backend Unit Tests (push) Canceled after 0s
CI - Test & Build / Frontend Build (push) Canceled after 0s
CI - Test & Build / E2E Tests (Playwright) (push) Canceled after 0s
CI - Test & Build / Security Scan (push) Canceled after 0s
CI - Test & Build / CI Summary (push) Canceled after 0s

This commit is contained in:
2026-09-05 09:23:44 +00:00
parent 089a965486
commit 2cbff8d8c8
+8 -6
View File
@@ -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