Test Report #858
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Test Report" | |
on: # Run this workflow after the CI has completed | |
workflow_run: | |
workflows: ["CI"] | |
types: | |
- completed | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dorny/test-reporter@v1 | |
with: | |
artifact: test-results # Read the test-results artifact and generate an HTML report | |
name: Test Report | |
path: "test-results.json" | |
reporter: mocha-json |