Skip to content

chore(ci): Uploda e2e artifacts #5

chore(ci): Uploda e2e artifacts

chore(ci): Uploda e2e artifacts #5

Workflow file for this run

name: Tests
on:
- pull_request
- push
jobs:
test:
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install
- run: npm install --prefix e2e/cra
- run: npm test
- run: npx playwright install --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