From abaa29e73c0cac8d3dba95e1a06dafe97dd06ca4 Mon Sep 17 00:00:00 2001 From: Mohamed Boudra Date: Tue, 21 Apr 2026 21:53:23 +0700 Subject: [PATCH] ci(app): install playwright browsers before app vitest run packages/app's vitest config has a browser project backed by playwright + chromium; the app-tests job needs the browsers installed the same way the playwright job already does. --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 664e09036..695d1efc0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -132,6 +132,9 @@ jobs: - name: Install dependencies run: npm install + - name: Install Playwright browsers + run: npx playwright install --with-deps chromium + - name: Build highlight dependency run: npm run build --workspace=@getpaseo/highlight