Created
January 9, 2019 01:27
-
-
Save kcmr/82c738fd981d562fbf921c03a87b4723 to your computer and use it in GitHub Desktop.
CI/CD con Travis en Github (Medium post)
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: "8" | |
addons: | |
chrome: stable | |
install: | |
- npm install | |
- npm install -g codecov | |
cache: npm | |
script: | |
- npm test | |
- codecov | |
- npm run build | |
deploy: | |
- provider: pages | |
skip_cleanup: true | |
github-token: $GITHUB_TOKEN | |
local-dir: "build/es6-bundled/demo" | |
on: | |
tags: true | |
- provider: npm | |
email: $NPM_EMAIL | |
api_key: $NPM_AUTH_TOKEN | |
on: | |
tags: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment