Travis CI Cheatsheet

Node.js Peer dependencies

For now, in our .travis.yml file in the root directory, add the dependent peer dependency to pre-install it.

Here’s an example for pre-install rendr

language: node_js
node_js:
  - "0.12"
  - "0.10"
notifications:
  email: false
before_install:
- npm install rendr

blog comments powered by Disqus