From adad036acf16b28544c419b93e7553dbed67b107 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 25 Nov 2025 12:01:23 +0100 Subject: [PATCH] ci: force PATH to setup-node bin during install --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e258a182..c1908d380 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,9 @@ jobs: node -v npm -v + - name: Capture node path + run: echo "NODE_BIN=$(dirname \"$(node -p \"process.execPath\")\")" >> "$GITHUB_ENV" + - name: Enable corepack and pin pnpm run: | corepack enable @@ -32,6 +35,7 @@ jobs: env: CI: true run: | + export PATH="$NODE_BIN:$PATH" which node node -v pnpm -v