fix: pnpm-lock.yaml out of sync — CI failing with ERR_PNPM_OUTDATED_LOCKFILE #40
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
CI on
mainis failing after PR #37 (feat/playwright-e2e-smoke-tests) was merged.Error:
Root cause: PR #37 added
@playwright/test@^1.58.2topackage.jsonbut did not regeneratepnpm-lock.yamlto include the new entry. CI runspnpm install --frozen-lockfilewhich rejects an outdated lockfile.Failing run
mainf09376020caa51107078055f30996ab254148194Fix
Run
pnpm installin the repo root to regeneratepnpm-lock.yaml, then commit the updated lockfile on a feature branch and open a PR.Duplicate of #38. Same root cause — @playwright/test missing from pnpm-lock.yaml after PR #37.