From af56f629c47db0bd91f02dcef5c47db5a71251de Mon Sep 17 00:00:00 2001 From: Matt Roberts Date: Wed, 18 Dec 2024 09:14:19 +0000 Subject: [PATCH] Don't include all system deps for playwright, it's not working on ubuntu noble. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d76929efe..a7fc4af91 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -156,7 +156,7 @@ jobs: - run: | sudo apt-get update sudo apt-get install -y libasound2t64 - npx playwright install-deps $BROWSER + npx playwright install $BROWSER env: BROWSER: ${{ matrix.browser }} - run: make test-e2e-ui @@ -215,7 +215,7 @@ jobs: - run: | sudo apt-get update sudo apt-get install -y libasound2t64 - npx playwright install-deps chromium + npx playwright install chromium env: BROWSER: chromium - run: make test-e2e-server