Skip to content

Commit

Permalink
ci: upload playwright reports to github artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
zachstence committed Jul 26, 2024
1 parent bcd19c5 commit 270fea7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,14 @@ jobs:
with:
node-version: 20
cache: pnpm
- run: pnpm install --frozen-lockfile && cd ./e2e && pnpx playwright install --with-deps && pnpm run test
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install Playwright and browsers
run: pnpm playwright install --with-deps
- name: Run tests
run: pnpm run test:e2e
- name: Upload Playwright reports
uses: actions/upload-artifact@v4
with:
name: playwright-reports
path: e2e/**/playwright-report/

0 comments on commit 270fea7

Please sign in to comment.