Files
replace-in-file/.travis.yml
2016-02-16 15:20:46 +13:00

19 lines
282 B
YAML

language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4"
- "5"
- "iojs"
branches:
only:
- master
before_install:
- "npm install -g istanbul"
script:
- "npm run test-ci"
after_script:
- "npm install -g coveralls"
- "cat ./coverage/lcov.info | coveralls"