Skip to content

Commit 3f0f7cc

Browse files
mirqtioclaude
andcommitted
fix(ci): remove pnpm cache parameter before corepack enable
The baseline allowlist workflow was failing with: ##[error]Unable to locate executable file: pnpm Root cause: setup-node with cache: 'pnpm' runs before corepack enable, but pnpm isn't available until after corepack enable runs. Fix: Remove cache: 'pnpm' from both jobs (gen-matrix and run-allowlisted). The workflow will manually install dependencies via corepack + pnpm. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 2572ea6 commit 3f0f7cc

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

.github/workflows/playwright-baseline-allowlist.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
- uses: actions/setup-node@v4
2424
with:
2525
node-version: '22.x' # Match local Node v22.15.0
26-
cache: 'pnpm'
2726

2827
- name: Install deps
2928
run: |
@@ -49,7 +48,6 @@ jobs:
4948
- uses: actions/setup-node@v4
5049
with:
5150
node-version: '22.x' # Match local Node v22.15.0
52-
cache: 'pnpm'
5351

5452
- name: Install browsers (Playwright)
5553
run: |

0 commit comments

Comments
 (0)