There was an error while loading. Please reload this page.
1 parent 1569527 commit cdb0eb6Copy full SHA for cdb0eb6
1 file changed
.github/workflows/code-storybook.yml
@@ -169,7 +169,9 @@ jobs:
169
170
- name: Install Visual Review CLI
171
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
+ # 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
175
176
- name: Submit snapshots to Visual Review
177
# Fork PRs can't read the token; their captures still ran above, so a
0 commit comments