Fix pnpm-lock.yaml after E2E deletion on main #82
Reference in New Issue
Block a user
Delete Branch "hugh/fix-pnpm-lockfile-main"
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?
Problem
Main branch CI is failing with
ERR_PNPM_OUTDATED_LOCKFILEbecause@playwright/testwas removed frompackage.jsonin commit943d901(E2E deletion PR #80 merge) butpnpm-lock.yamlwas not regenerated.Solution
Regenerate
pnpm-lock.yamlby runningpnpm install, which removes the stale@playwright/testentries.Impact
Related
Testing
CI will verify that
pnpm install --frozen-lockfilesucceeds.