ci: ensure pnpm on PATH before install

main
Peter Steinberger 2025-11-25 05:45:04 +01:00
parent 11a486400f
commit df6954541e
1 changed files with 4 additions and 1 deletions

View File

@ -23,7 +23,10 @@ jobs:
env:
PNPM_HOME: ~/.pnpm
PNPM_IGNORE_SCRIPTS: "false"
run: pnpm install --frozen-lockfile --ignore-scripts=false
run: |
export PNPM_HOME="${PNPM_HOME:-$HOME/.pnpm}"
export PATH="$PNPM_HOME:$PATH"
pnpm install --frozen-lockfile --ignore-scripts=false
- name: Lint
run: pnpm lint