Coveralls GitHub Action
March 8, 2019 ยท View on GitHub
A GitHub action that to send your code coverage to coveralls.io
Usage
You must set a secret the name REPO_TOKEN which must be the repo token given to you by Coveralls.
You there must also be an npm run coverage script that runs test coverage and then outputs the results to ./coverage/lcov.info
An example of this would be:
{
"scripts": {
"coverage": "jest --coverage"
},
}