Skip to content

Commit 09d2300

Browse files
committed
fixup: install playwright
1 parent b34fa1d commit 09d2300

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,9 @@ jobs:
503503

504504
- name: Install Playwright OS dependencies
505505
if: steps.playwright-cache.outputs.cache-hit != 'true'
506-
run: sudo npx playwright install-deps
506+
run: |
507+
./test/node_modules/.bin/playwright install-deps
508+
./test/node_modules/.bin/playwright install
507509
508510
- name: Run end-to-end tests
509511
run: yarn test:e2e --global-timeout 840000
@@ -574,7 +576,9 @@ jobs:
574576

575577
- name: Install Playwright OS dependencies
576578
if: steps.playwright-cache.outputs.cache-hit != 'true'
577-
run: sudo npx playwright install-deps
579+
run: |
580+
./test/node_modules/.bin/playwright install-deps
581+
./test/node_modules/.bin/playwright install
578582
579583
- name: Cache Caddy
580584
uses: actions/cache@v2

test/e2e/models/CodeServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export class CodeServer {
138138
// Set to empty string to prevent code-server from
139139
// using the existing instance when running the e2e tests
140140
// from an integrated terminal.
141-
VSCODE_IPC_HOOK_CLI: "",
141+
VSCODE_IPC_HOOK_CLI: "",
142142
PASSWORD,
143143
},
144144
})

0 commit comments

Comments
 (0)