In my Angular project hosted on GitHub, I'm running the tests in TravisCI using:
package.json scripts
"test-ci": "ng test --watch=false"
.travis.yml script
script:
- ng lint
- npm run test-ci
- npm run e2e
- npm run build
I would like to set up coveralls, however from the official documentation and articles on the web it is not super clear what I have to do.