From 288737a4d4610c2f9a5b9fdf6673c4c96a227d7e Mon Sep 17 00:00:00 2001 From: Henning Dieterichs Date: Tue, 18 Nov 2025 18:31:29 +0100 Subject: [PATCH] Installs playwright deps via install-deps script --- .azure-pipelines/publish-nightly.yml | 2 +- .azure-pipelines/publish-stable.yml | 2 +- .github/workflows/ci.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.azure-pipelines/publish-nightly.yml b/.azure-pipelines/publish-nightly.yml index c90eec01..46bd491b 100644 --- a/.azure-pipelines/publish-nightly.yml +++ b/.azure-pipelines/publish-nightly.yml @@ -88,7 +88,7 @@ extends: - script: npm ci displayName: Install NPM dependencies - - script: npx playwright install --with-deps + - script: npx playwright install-deps displayName: Install Playwright Dependencies - script: yarn ts-node ./scripts/ci/build-monaco-editor-pkg nightly diff --git a/.azure-pipelines/publish-stable.yml b/.azure-pipelines/publish-stable.yml index 270e534f..1e7e6af6 100644 --- a/.azure-pipelines/publish-stable.yml +++ b/.azure-pipelines/publish-stable.yml @@ -72,7 +72,7 @@ extends: - script: npm ci displayName: Install NPM dependencies - - script: npx playwright install --with-deps + - script: npx playwright install-deps displayName: Install Playwright Dependencies - script: yarn ts-node ./scripts/ci/build-monaco-editor-pkg stable diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1abda5f1..964dad0c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: npm ci - name: Download Playwright - run: npx playwright install --with-deps + run: npx playwright install-deps - name: execute `npm ci` (2) if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}