From ba20157ab5100b7c7453d9bbdca70db65a838fae Mon Sep 17 00:00:00 2001 From: BrickheadJohnny Date: Tue, 23 Jul 2024 06:37:33 +0200 Subject: [PATCH] fix(gh action): add Build step --- .github/workflows/playwright.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 8fd674e91d..4d8b9f7a98 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -17,6 +17,8 @@ jobs: run: npm ci - name: Install Playwright Browsers run: npx playwright install --with-deps + - name: Build project + run: npm run build - name: Run Playwright tests run: npm run test - uses: actions/upload-artifact@v4