From 482a3581789d04c3503a565079cb7094eb227884 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramiro=20G=C3=B3mez?= Date: Fri, 4 Oct 2024 02:20:36 +0200 Subject: [PATCH] Install Playwright browsers in workflow. --- .github/workflows/playwright.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 78b348c..45ac867 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -15,6 +15,8 @@ jobs: node-version: lts/* - name: Install dependencies run: npm i + - name: Install Playwright browsers + run: npx playwright install --with-deps - name: Run dev server run: npm run serve - name: Run Playwright tests