From ed05c039fc9dd8b14bd23212fdf7fdbf7246646b Mon Sep 17 00:00:00 2001 From: Gugustinette Date: Wed, 23 Oct 2024 00:35:02 +0200 Subject: [PATCH] ci: install playwright --- .github/workflows/deploy-pages.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 8891e186..e49df2e2 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -45,10 +45,13 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v4 - name: Install dependencies - run: npm install + run: npm ci # Build all packages - name: Build all packages run: npx nx run-many --target=build --all + # Install Playwright for browser testing + - name: Install Playwright + run: npx playwright install --with-deps # Run tests and generate reports with Vitest - name: Generate test reports run: npm run test:report