Skip to content

Commit

Permalink
Updated coveralls command to display coverage in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
klis87 committed Dec 22, 2018
1 parent bb5c812 commit cde0f8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ node_js:
- node
script:
- yarn run lint
- yarn run test:cover
- yarn run coveralls
- yarn run test-types
- yarn run build
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lint": "lerna run lint",
"test": "jest",
"test:cover": "jest --coverage",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test-types": "lerna run test-types",
"prettify": "prettier --write '{packages,examples}/**/*.{js,jsx,ts}'",
"bundlesize": "bundlesize"
Expand Down

0 comments on commit cde0f8a

Please sign in to comment.