Test report doesn't appear in expected place in GitHub UI
See original GitHub issueHi,
thanks a lot for this Action 👍
We currently have multiple GitHub Actions Workflows (main.yaml
, lint-yaml.yaml
etc ).
When using the action inside of the main.yaml
, the test results appear under the lint-yaml
results 🤔
Not 100% sure what is causing it
our step, within main.yaml
looks like
- name: Report PR Test results
uses: dorny/test-reporter@v1
if: ${{ github.event_name == 'pull_request' && (success() || failure()) }}
with:
name: jest Tests
path: reports/jest-*.xml
reporter: jest-junit
Here is a (sanitized) output of the step :
1s
Run dorny/test-reporter@v1
with:
name: jest Tests
path: reports/jest-*.xml
reporter: jest-junit
list-suites: all
list-tests: all
max-annotations: 10
fail-on-error: true
token: ***
env:
// snipped
Action was triggered by pull_request: using SHA from head of source branch
Check runs will be created with SHA=8d1d74409581269df26b4df491b55819597d9501
Listing all files tracked by git
/usr/bin/git ls-files -z
// ...
Found 190 files tracked by GitHub
Using test report parser 'jest-junit'
Creating test report jest Tests
Processing test results from reports/jest-junit.xml
Creating report summary
Generating check run summary
Creating annotations
Creating check run with conclusion success
Check run create response: 201
Check run URL: https://api.github.com/repos/XXXX/YYYY/check-runs/2005347522
Check run HTML: https://github.com/XXXX/YYYY/runs/2005347522
Issue Analytics
- State:
- Created 3 years ago
- Reactions:10
- Comments:10 (1 by maintainers)
Top Results From Across the Web
Troubleshoot a GitHub repo connection to an Azure Boards ...
Learn how to resolve connection problems with a GitHub repository and Azure Boards project.
Read more >Unit test reports - GitLab Docs
A unit test report can appear to be empty when viewed in a merge request if the artifact that contained the report expires....
Read more >Enabling GitHub Checks - CircleCI
This document describes how to enable the GitHub Checks feature and authorize CircleCI to report workflow status to the GitHub app. The GitHub...
Read more >Git Push ERROR: Repository not found - Stack Overflow
Open Keychain Access on your mac, choose "All Items" category and search for git. Delete all results found. Now go to the terminal...
Read more >Python testing in Visual Studio Code
The combined results of all the tests is your test report, which tells you whether the function (the unit), is behaving as expected...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Maybe the new job summary (https://github.blog/2022-05-09-supercharging-github-actions-with-job-summaries/) can be used to:
Just a quick thought (and sorry if this has been discussed before):
Instead of creating a check, couldn’t you use the same mechanism that https://github.com/actions/upload-artifact uses (under the assumption that you can upload other file types than
.zip
files)?This would solve the problem in this issue. It would also solve the problem that this action requires the
checks: write
permission (which is not available for pull requests from forks).I understand that this change would (most likely) worsen the UX of this action - but on the other hand, I’d argue that you don’t need to view the test report that often (usually only if some test has failed), so this change could be ok.