We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 278aa8d commit 24727f2Copy full SHA for 24727f2
.github/workflows/main.yml
@@ -19,6 +19,16 @@ jobs:
19
run: npx playwright install --with-deps
20
- name: Run Playwright tests
21
run: npm test run
22
+ - name: Store JUnit Report
23
+ uses: actions/upload-artifact@v4
24
+ with:
25
+ name: junit-report
26
+ path: reports/junit-report.xml
27
+ - name: Publish Test Report
28
+ ses: mikepenz/action-junit-report@v3
29
30
+ report_paths: 'reports/junit-report.xml'
31
+ - name: Detailed Report
32
- uses: actions/upload-artifact@v4
33
if: ${{ !cancelled() }}
34
with:
playwright.config.js
@@ -0,0 +1,8 @@
1
+import { defineConfig } from '@playwright/test';
2
+
3
+export default defineConfig({
4
+ reporter: [['junit', { outputFile: 'reports/junit-report.xml' }]],
5
+ use: {
6
+ headless: true,
7
+ },
8
+});
0 commit comments