Skip to content

Commit c937fa4

Browse files
committed
Fix using the wrong playwright option
1 parent cc4a4ff commit c937fa4

File tree

1 file changed

+1
-1
lines changed
  • .github/actions/src/playwright-cache

1 file changed

+1
-1
lines changed

.github/actions/src/playwright-cache/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ async function main() {
5757
if (!playwrightDir) {
5858
core.info('playwright directory cache not located, installing');
5959

60-
const exitCode = await exec('yarn', ['workspaces', 'foreach', '-A', '--include', packageName, 'run', 'playwright', 'install', 'chromium', '--with-deps', '--shell-only']);
60+
const exitCode = await exec('yarn', ['workspaces', 'foreach', '-A', '--include', packageName, 'run', 'playwright', 'install', 'chromium', '--with-deps', '--only-shell']);
6161
if (exitCode !== 0) {
6262
core.setFailed('Failed to install playwright');
6363
return;

0 commit comments

Comments
 (0)