Skip to content

Commit

Permalink
adding logging
Browse files Browse the repository at this point in the history
  • Loading branch information
puagarwa committed Jul 12, 2024
1 parent f986a6d commit 667c08e
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,22 @@ jobs:
run: npx playwright run-server --port 8090 &
env:
DEBUG: pw:browser*
DEBUG_FILE: playwright-report/server.log
DEBUG_FILE: log/server.log

- name: Run Playwright tests
run: npx playwright test --repeat-each=100
run: npx playwright test --repeat-each=1000
env:
DEBUG: pw:browser*
DEBUG_FILE: playwright-report/debug.log
DEBUG_FILE: log/debug.log
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
- uses: actions/upload-artifact@v3
if: always()
with:
name: log
path: log/
retention-days: 30

0 comments on commit 667c08e

Please sign in to comment.