Created
October 14, 2017 12:22
-
-
Save brookslyrette/82d978af0ee04390a796060cb41aa4e7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| language: node_js | |
| node_js: | |
| - "stable" | |
| cache: | |
| directories: | |
| - node_modules | |
| script: | |
| - npm test -- --coverage # Include coverage when running tests | |
| - npm run build | |
| after_script: # Upload coverage reports | |
| - COVERALLS_REPO_TOKEN=$coveralls_repo_token npm run coveralls | |
| deploy: | |
| provider: pages | |
| skip_cleanup: true | |
| github_token: $github_token | |
| local_dir: build | |
| on: | |
| branch: master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment