From 865abcf1f553c1fbbd60ae6309127c1d9616cb71 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 25 Nov 2025 05:58:55 +0100 Subject: [PATCH] ci: manually install Node 22.9.0 and run pnpm --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 38c57d62b..581282135 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,14 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Install Node 22.9.0 + run: | + NODE_VERSION=22.9.0 + mkdir -p "$RUNNER_TEMP/node" + curl -fsSL "https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}-linux-x64.tar.xz" \ + | tar -xJ -C "$RUNNER_TEMP/node" --strip-components=1 + echo "$RUNNER_TEMP/node/bin" >> "$GITHUB_PATH" + - name: Node version run: node -v