diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 5543a4b..4904333 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -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