From 546d800176270ecf9b7c7f6bbef004a846cfcc05 Mon Sep 17 00:00:00 2001 From: Alexis Jacomy Date: Thu, 7 Mar 2024 15:23:49 +0100 Subject: [PATCH] [ci] Builds all packages before testing in CI --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 876878d69..445b89b9c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -33,6 +33,9 @@ jobs: - name: Install dependencies run: npm ci + - name: Compile all packages + run: npm build + - name: Install Playwright Browsers run: npx playwright install --with-deps if: steps.playwright-cache.outputs.cache-hit != 'true'