fix: add pnpm install step to release workflow
CI / ci (pull_request) Failing after 0s

Add explicit pnpm installation before Install dependencies step.
Without this, ubuntu-latest runner fails with 'pnpm: command not found'
since pnpm is not bundled with the Node 20 action.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-20 21:39:46 +00:00
committed by Gandalf the Greybeard [agent]
parent 733cfad8d3
commit 63050174e9
+3
View File
@@ -25,6 +25,9 @@ jobs:
node-version: '20'
cache: 'pnpm'
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile