JS Test Reporting #193
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: JS Test Reporting | |
# read-write repo token | |
# access to secrets | |
on: | |
workflow_run: | |
workflows: ['JS-build'] | |
types: | |
- completed | |
jobs: | |
upload: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: phoenix-actions/test-reporting@v14 | |
with: | |
artifact: test-results # artifact name | |
name: JS - Tests # Name of the check run which will be created | |
path: '**/test-junit-report.xml' # Path to test results (inside artifact .zip) | |
reporter: jest-junit # Format of test results | |
output-to: checks |