Skip to content

Commit

Permalink
fix(ci): fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
galenwarren committed Jul 7, 2018
1 parent a1b7c7f commit 193d328
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
command: npm install
- run:
name: Test and Validate Coverage
command: mkdir -p coverage && npm run coverage:ci
command: npm run coverage:ci
- run:
name: Publish Coverage
command: npm run coverage:publish
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"test:watch": "jest --watch",
"coverage": "jest --coverage --no-cache",
"coverage:watch": "jest --coverage --no-cache --watch",
"coverage:ci": "jest --coverage --no-cache --ci --coverageReporters=text-lcov > $npm_package_directories_coverage/lcov.info",
"coverage:ci": "mkdir -p coverage && jest --coverage --no-cache --ci --coverageReporters=text-lcov > $npm_package_directories_coverage/lcov.info",
"coverage:publish": "cat $npm_package_directories_coverage/lcov.info | coveralls",
"cz": "git-cz",
"build": "BABEL_ENV=build babel $npm_package_directories_src -d $npm_package_directories_dist",
Expand Down

0 comments on commit 193d328

Please sign in to comment.