ci: manually install Node 22.9.0 and run pnpm

This commit is contained in:
Peter Steinberger
2025-11-25 05:58:55 +01:00
parent 20cc4e0ebf
commit 865abcf1f5

View File

@@ -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