Skip to content

Commit

Permalink
chore(root): generate github artifacts for all playwright reports
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyFriesenGitHub committed Sep 6, 2024
1 parent cda4cec commit d3e8e2c
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/TEST_e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,14 @@ jobs:
- name: 🎭 Install Playwright Browsers
run: pnpm i; pnpm playwright install --with-deps

- name: πŸ’€ Run E2E Tests
run: pnpm nx run-many -t e2e -p docs-e2e website-e2e portal-e2e --parallel=false --reporter=html --verbose
- name: πŸ’€ Run Docs E2E Tests
run: pnpm nx run docs-e2e:e2e --reporter=html --verbose

- name: πŸ’€ Run Portal E2E Tests
run: pnpm nx run portal-e2e:e2e --reporter=html --verbose

- name: πŸ’€ Run Website E2E Tests
run: pnpm nx run website-e2e:e2e --reporter=html --verbose

- name: Check Playwright Report Directory 🎭
run: ls -la playwright-report/
Expand All @@ -44,7 +50,7 @@ jobs:
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
name: all-playwright-reports
path: playwright-report/
retention-days: 30

Expand Down

0 comments on commit d3e8e2c

Please sign in to comment.