Navigation Menu

Skip to content

misaka42/vcx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Codecov TypeScript Example

codecov Build Status Version License

Guide

Travis Setup

Add to your .travis.yml file.

language: node_js
scripts:
  - npm install codecov -g
after_success:
  - codecov

Producing Coverage Reports

nyc report --reporter=json > coverage/coverage.json

Caveats

Private Repo

Repository tokens are required for (a) all private repos, (b) public repos not using Travis-CI, CircleCI or AppVeyor. Find your repository token at Codecov and provide via codecov --token=:token or export CODECOV_TOKEN=":token"

Support

FAQ

  • Q: Why no coverage reports showing up?
    A:Make sure you have enabled source mapping. tsc -p . --sourcemap

Or in your tsconfig.json

{
  "compilerOptions": {
    "sourceMap": true,
  }
}
  1. More documentation at https://docs.codecov.io
  2. Configure codecov through the codecov.yml https://docs.codecov.io/docs/codecov-yaml

We are happy to help if you have any questions. Please contact email our Support at support@codecov.io

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published