Skip to content

fix: Remove extra playwright install #13

fix: Remove extra playwright install

fix: Remove extra playwright install #13

Workflow file for this run

name: Tests
on:
- pull_request
- push
jobs:
test:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm install
- run: npm ci --prefix e2e/cra
- run: npm test
- run: npx --prefix e2e/cra playwright install chromium --with-deps
- run: npm run test:e2e
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: e2e/cra/playwright-report/
retention-days: 30