Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML reports on GitHub Actions / GitHub pull requests

Is it any possibility to show pretty html reports (from test runners like Jest, Mocha, Cypress, test coverage, etc.) on GitHub pull requests checks?

like image 862
Max Vinogradov Avatar asked May 22 '20 14:05

Max Vinogradov


Video Answer


1 Answers

Maybe not solution but work around. GitHub Actions has next action: actions/upload-artifact https://github.com/actions/upload-artifact

So you can export your reports as artifacts and then download them. Probably if it's public repo, you can download them via API, but nothing out-of-box... so good luck ...

like image 54
Max Vinogradov Avatar answered Sep 18 '22 07:09

Max Vinogradov