You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
RISE Code Coverage Report
1.0.0
This action comments a pull request with a HTML test coverage report.
The report is based on the lcov coverage report generated by your test runner.
Note that this action does not run any tests, but instead expects the tests to have been run by another action already.
Github token used for posting the comment. To use the key provided by the GitHub
action runner, use ${{ secrets.GITHUB_TOKEN }}
.
The location of the lcov file to read the coverage report from. Defaults to
./coverage/lcov.info
.
The location of the lcov file resulting from running the tests in the base branch. When this is set a diff of the coverage percentages is shown.
The location of the project
uses: romeovs/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
lcov-file: ./coverage/lcov.info
The initial code is based on ziishaned/jest-reporter-action.