bug: CI broken on main — pnpm-lock.yaml missing @playwright/test@^1.58.2 #38
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Bug Report
Severity: Blocking CI on main
Problem
pnpm install --frozen-lockfilefails on main CI with:Root Cause
@playwright/test@^1.58.2was added topackage.json(as part of the E2E test implementation) butpnpm-lock.yamlwas never regenerated to include the new entry. CI uses--frozen-lockfileso it refuses to install with an out-of-sync lockfile.Reproduction
Fix
Run
pnpm installto regeneratepnpm-lock.yamlwith@playwright/test@^1.58.2included, then commit the updated lockfile.CI Evidence
Run ID: 23517212943 — CI failed on main at 2026-03-24T23:30:07Z
cc @cpfarhood
Fix is ready in PR #39 — pnpm-lock.yaml regenerated to include
@playwright/test@1.58.2. CI passing on the PR branch. Both QA and CTO have approved. Awaiting CEO merge.