Node.js 0.10 loses upstream support today (see https://github.com/nodejs/LTS/)
so let's stop testing against it as well.
language: node_js
sudo: false
node_js:
-- "0.10"
- "0.12"
- "4"
- "6"
oldNode = /^v0\./.test( process.version );
// Support: Node.js <4
- // Skip running tasks that dropped support for Node.js 0.10 & 0.12
- // in those Node versions.
+ // Skip running tasks that dropped support for Node.js 0.12
+ // in this Node version.
function runIfNewNode( task ) {
return oldNode ? "print_old_node_message:" + task : task;
}