Skip to content

Commit

Permalink
Added coverage reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
lmammino committed Mar 18, 2018
1 parent ef0baef commit b0b36a8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: npm test
- run: npm run coverage:publish
- deploy:
name: Deploy to GitHub and NPM
command: |
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lumpy",
"version": "0.0.2",
"version": "0.0.3",
"description": "A lumpy and dummy JavaScript module bundler for those who are stuck in the past",
"engines": {
"node": ">= 8.0.0"
Expand All @@ -17,6 +17,7 @@
"test:lint": "eslint src",
"test:unit": "jest src --verbose --coverage",
"test": "npm run test:lint && npm run test:unit",
"coverage:publish": "codecov",
"package:create": "pkg . -t node8-win,node8-macos,node8-linux --out-dir build",
"package:publish": "node scripts/publish-release $GITHUB_TOKEN lmammino/lumpy $npm_package_version",
"release:tag": "git tag $npm_package_version && git push --tags"
Expand Down

0 comments on commit b0b36a8

Please sign in to comment.