-
-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(travis): run build script after lint and test
- Loading branch information
1 parent
8315832
commit 5b849ee
Showing
1 changed file
with
9 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,16 @@ | ||
language: node_js | ||
|
||
node_js: | ||
- stable | ||
|
||
sudo: false # https://docs.travis-ci.com/user/migrating-from-legacy/ | ||
|
||
- stable | ||
install: | ||
- npm install | ||
|
||
- npm install | ||
script: | ||
- npm run lint | ||
- npm run cover | ||
|
||
- npm run lint | ||
- npm run cover | ||
- npm run build | ||
after_script: | ||
- npm run coveralls | ||
|
||
- npm run coveralls | ||
cache: | ||
directories: | ||
- node_modules | ||
|
||
directories: | ||
- node_modules | ||
notifications: | ||
email: false | ||
email: false |