Skip to content

Commit 2d95193

Browse files
committed
ci(#1699): Add Test Report
1 parent b5fe848 commit 2d95193

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/test-report.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "Test Report"
2+
on:
3+
workflow_run:
4+
workflows: ["nf-core CI"] # 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: JEST 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

Comments
 (0)