Skip to content

Commit

Permalink
feat(travis): add build step
Browse files Browse the repository at this point in the history
  • Loading branch information
a.inkin authored and waterplea committed Mar 13, 2019
1 parent a72102e commit c40aaf9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ node_js:
- "8"
- "10"
script:
- npm run build
- npm run test:ci
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"build": "ng build && npm run postbuild",
"lint": "ng lint",
"test": "ng test --browsers ChromeHeadless --watch=false --code-coverage",
"test:ci": "npm run test && cat coverage/angular-contenteditable-accessor/lcov.info | coveralls",
"test:ci": "npm run check && npm run coveralls",
"coveralls": "cat coverage/angular-contenteditable-accessor/lcov.info | coveralls",
"release": "standard-version && npm run build",
"package": "node scripts/updatePackage.js && git add projects/angular-contenteditable-accessor/package.json",
"postbuild": "node scripts/copyReadme.js && node scripts/removeDependencies.js",
Expand Down

0 comments on commit c40aaf9

Please sign in to comment.