From 11566f0401ef62ac4452554384cc2c24bb3ea905 Mon Sep 17 00:00:00 2001 From: Will Sheldon <114631109+wssheldon@users.noreply.github.com> Date: Wed, 6 Dec 2023 08:50:27 -0800 Subject: [PATCH] Only install chrome for playwright since we only test on chrome --- .github/workflows/playwright.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 775b3295835d..1a7897144757 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -54,7 +54,7 @@ jobs: npm ci -D --prefix src/dispatch/static/dispatch npm install -D @playwright/test - name: Install playwright browsers - run: npx playwright install --with-deps + run: npx playwright install --with-deps chromium - name: Setup sample database run: dispatch database restore --dump-file data/dispatch-sample-data.dump && dispatch database upgrade - name: Run tests