Skip to content

Commit

Permalink
Fix #31 Add missing semi-colons to the build
Browse files Browse the repository at this point in the history
Signed-off-by: Remy Suen <[email protected]>
  • Loading branch information
rcjsuen committed Mar 12, 2018
1 parent 13451b7 commit a1a80ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ install:

script:
- if [ $TRAVIS_NODE_VERSION == "8" ]; then
npm install coveralls --save-dev
npm install coveralls --save-dev;
npm run nyc-ci;
npm run coverage;
else
npm run test
npm run test;
fi

0 comments on commit a1a80ab

Please sign in to comment.