File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -503,7 +503,9 @@ jobs:
503
503
504
504
- name : Install Playwright OS dependencies
505
505
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
507
509
508
510
- name : Run end-to-end tests
509
511
run : yarn test:e2e --global-timeout 840000
@@ -574,7 +576,9 @@ jobs:
574
576
575
577
- name : Install Playwright OS dependencies
576
578
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
578
582
579
583
- name : Cache Caddy
580
584
uses : actions/cache@v2
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ export class CodeServer {
138
138
// Set to empty string to prevent code-server from
139
139
// using the existing instance when running the e2e tests
140
140
// from an integrated terminal.
141
- VSCODE_IPC_HOOK_CLI : "" ,
141
+ VSCODE_IPC_HOOK_CLI : "" ,
142
142
PASSWORD ,
143
143
} ,
144
144
} )
You can’t perform that action at this time.
0 commit comments