From 59b2a36066d7df8845a266bdb3a91650c0c38eb0 Mon Sep 17 00:00:00 2001 From: Matt Roberts Date: Wed, 18 Dec 2024 09:25:13 +0000 Subject: [PATCH] Pin playwright to see if that's more consistent --- .github/workflows/build.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a7fc4af91..810105a90 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -154,9 +154,8 @@ jobs: fider-image - run: npm ci - run: | - sudo apt-get update - sudo apt-get install -y libasound2t64 - npx playwright install $BROWSER + npx install playwright@1.48 + npx playwright@1.48 install-deps $BROWSER env: BROWSER: ${{ matrix.browser }} - run: make test-e2e-ui @@ -213,9 +212,8 @@ jobs: fider-image - run: npm ci - run: | - sudo apt-get update - sudo apt-get install -y libasound2t64 - npx playwright install chromium + npx install playwright@1.48 + npx playwright@1.48 install-deps chromium env: BROWSER: chromium - run: make test-e2e-server