diff --git a/.github/workflows/daily-tests.yml b/.github/workflows/daily-tests.yml index 3d650b3..759fb0e 100644 --- a/.github/workflows/daily-tests.yml +++ b/.github/workflows/daily-tests.yml @@ -99,8 +99,16 @@ jobs: npm ci npm run build - - name: Install Playwright browsers (for browser platform only) - run: npx playwright install --with-deps chromium + - name: Install Playwright system dependencies + run: npx playwright install-deps chromium + env: + DEBIAN_FRONTEND: noninteractive + NEEDRESTART_MODE: a + timeout-minutes: 5 + + - name: Install Playwright browsers + run: npx playwright install chromium + timeout-minutes: 5 - name: Run tests continue-on-error: true diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 2718ce9..866763e 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -92,8 +92,16 @@ jobs: npm ci npm run build - - name: Install Playwright browsers (for browser platform only) - run: npx playwright install --with-deps chromium + - name: Install Playwright system dependencies + run: npx playwright install-deps chromium + env: + DEBIAN_FRONTEND: noninteractive + NEEDRESTART_MODE: a + timeout-minutes: 5 + + - name: Install Playwright browsers + run: npx playwright install chromium + timeout-minutes: 5 - name: Run tests id: run-tests @@ -193,8 +201,16 @@ jobs: npm ci npm run build - - name: Install Playwright browsers (for browser platform only) - run: npx playwright install --with-deps chromium + - name: Install Playwright system dependencies + run: npx playwright install-deps chromium + env: + DEBIAN_FRONTEND: noninteractive + NEEDRESTART_MODE: a + timeout-minutes: 5 + + - name: Install Playwright browsers + run: npx playwright install chromium + timeout-minutes: 5 - name: Run tests id: run-tests