Skip to content

Commit ce0ac7a

Browse files
authored
fix: Update playwright.yml to use npm install (#588)
Changes `run: npm ci` to `run: npm install`. Using `npm ci` was a bad choice since it doesn't resolve the workspace (introducing new samples results in a change to package.json).
1 parent 6fc4943 commit ce0ac7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
${{ runner.os }}-playwright- # Broader fallback
8282
8383
- name: Install dependencies
84-
run: npm ci
84+
run: npm install
8585

8686
- name: Install Playwright Browsers
8787
run: npx playwright install --with-deps

0 commit comments

Comments
 (0)