.travis.yml
language: node_js
git:
depth: 10
notifications:
email:
on_success: never
node_js:
- "0.12"
- "4"
- "6"
- "8"
- "10"
script: make all
sudo: false
Build Config
{
"git": {
"depth": 10
},
"sudo": false,
"script": "make all",
"node_js": [
"0.12",
"4",
"6",
"8",
"10"
],
"language": "node_js",
"notifications": {
"email": {
"on_success": "never"
}
}
}