Skip to content
This repository was archived by the owner on Aug 6, 2026. It is now read-only.

Commit cdb0eb6

Browse files
committed
tolerate lockfile drift in vr-cli install
1 parent 1569527 commit cdb0eb6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/code-storybook.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,9 @@ jobs:
169169

170170
- name: Install Visual Review CLI
171171
if: github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'push'
172-
run: cd vr-cli/products/visual_review/cli && npm ci && npm run build && npm link
172+
# npm install fallback: posthog master's CLI lockfile can drift out of
173+
# sync with its package.json (posthog#74334) and block every PR here.
174+
run: cd vr-cli/products/visual_review/cli && (npm ci || npm install) && npm run build && npm link
173175

174176
- name: Submit snapshots to Visual Review
175177
# Fork PRs can't read the token; their captures still ran above, so a

0 commit comments

Comments
 (0)