From 98f128e8d5b04a2a63a7b3908a426337ae63406e Mon Sep 17 00:00:00 2001 From: Morgan Ney Date: Mon, 15 Jan 2024 09:58:18 -0600 Subject: [PATCH] ci: install playwright deps. --- .github/workflows/e2e.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 01fa32d..8102448 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -31,6 +31,8 @@ jobs: node-version: '20.10.0' - name: Install Dependencies run: npm ci + - name: Install Playwright Deps + run: npx playwright install-deps chrome webkit - name: Install Playwright Browsers run: npx playwright install chrome webkit - name: Run Tests