You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
441 B

language: node_js
node_js:
- "0.12"
- "0.10"
- "4"
- "6"
- "7"
before_script: >
if nvm ls-remote --lts | grep "$(nvm current)"; then
echo "running on a LTS node version, linting"
npm test
else
echo "running on a non-LTS node version, skipping linting"
fi
script: ./node_modules/.bin/istanbul cover ./node_modules/.bin/nodeunit test && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage