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 e27fe8b commit 0e38fe6Copy full SHA for 0e38fe6
.github/workflows/test-report.yml
@@ -0,0 +1,20 @@
1
+name: 'Test Report'
2
+on:
3
+ workflow_run:
4
+ workflows: ['Cloudflare Wrangler Deploy'] # runs after CI workflow
5
+ types:
6
+ - completed
7
+permissions:
8
+ contents: read
9
+ actions: read
10
+ checks: write
11
+jobs:
12
+ report:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: dorny/test-reporter@v1
16
+ with:
17
+ artifact: test-results # artifact name
18
+ name: Vite Tests # Name of the check run which will be created
19
+ path: '**/*.xml' # Path to test results (inside artifact .zip)
20
+ reporter: java-junit # Format of test results
0 commit comments