From f39d9c687f520db0f0a718943e88a80425198ab7 Mon Sep 17 00:00:00 2001 From: thc202 Date: Tue, 17 Dec 2024 17:29:23 +0000 Subject: [PATCH] Install Playwright dependencies in CI Update CI workflow to install the Playwright dependencies before running the tests. Signed-off-by: thc202 --- .github/workflows/ci.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 361f2c2..0b2e949 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -31,5 +31,6 @@ jobs: run: yarn run build - name: Test - run: xvfb-run yarn test - \ No newline at end of file + run: | + npx playwright install-deps + xvfb-run yarn test