Skip to content

Instantly share code, notes, and snippets.

@kcmr
Created January 9, 2019 01:27
Show Gist options
  • Save kcmr/82c738fd981d562fbf921c03a87b4723 to your computer and use it in GitHub Desktop.
Save kcmr/82c738fd981d562fbf921c03a87b4723 to your computer and use it in GitHub Desktop.
CI/CD con Travis en Github (Medium post)
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