Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/pr-demo-video.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,11 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
# NOTE: `cache: npm` removed — package-lock.json is gitignored
# in this repo, so the action fails with "lock file not found".

- name: Install dependencies
run: npm ci
run: npm install --legacy-peer-deps
Copy link
Copy Markdown

@augmentcode augmentcode Bot May 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.github/workflows/pr-demo-video.yml:57 — Switching to npm install --legacy-peer-deps without a lockfile makes dependency resolution non-deterministic across runs and can introduce flaky CI failures. If the goal is a reliable “record” check, it may be worth ensuring the install step is still reproducible/stable for Playwright recording.

Severity: medium

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.


- name: Install Playwright browsers
run: npx playwright install --with-deps chromium
Expand Down
Loading
Loading