Skip to content

Commit 288737a

Browse files
committed
Installs playwright deps via install-deps script
1 parent 5486e82 commit 288737a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.azure-pipelines/publish-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ extends:
8888
- script: npm ci
8989
displayName: Install NPM dependencies
9090

91-
- script: npx playwright install --with-deps
91+
- script: npx playwright install-deps
9292
displayName: Install Playwright Dependencies
9393

9494
- script: yarn ts-node ./scripts/ci/build-monaco-editor-pkg nightly

.azure-pipelines/publish-stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ extends:
7272
- script: npm ci
7373
displayName: Install NPM dependencies
7474

75-
- script: npx playwright install --with-deps
75+
- script: npx playwright install-deps
7676
displayName: Install Playwright Dependencies
7777

7878
- script: yarn ts-node ./scripts/ci/build-monaco-editor-pkg stable

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
npm ci
3939
4040
- name: Download Playwright
41-
run: npx playwright install --with-deps
41+
run: npx playwright install-deps
4242

4343
- name: execute `npm ci` (2)
4444
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}

0 commit comments

Comments
 (0)