diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 7938e056..bc00c6b5 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -15,9 +15,18 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 + + - name: Install dependencies + run: npm ci --no-audit + env: + HUSKY_SKIP_INSTALL: true + + - name: Install Playwright Browsers + run: npx playwright install --with-deps + - run: npx playwright install-deps + - name: Build and run all tests run: | - npm ci npm run build npm run bundlesize npm run test:unit:coverage