mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Build: Stop testing on Node.js 0.10
Node.js 0.10 loses upstream support today (see https://github.com/nodejs/LTS/) so let's stop testing against it as well.
This commit is contained in:
parent
fedc1aa690
commit
5b4cb0d337
@ -1,7 +1,6 @@
|
|||||||
language: node_js
|
language: node_js
|
||||||
sudo: false
|
sudo: false
|
||||||
node_js:
|
node_js:
|
||||||
- "0.10"
|
|
||||||
- "0.12"
|
- "0.12"
|
||||||
- "4"
|
- "4"
|
||||||
- "6"
|
- "6"
|
||||||
|
@ -17,8 +17,8 @@ module.exports = function( grunt ) {
|
|||||||
oldNode = /^v0\./.test( process.version );
|
oldNode = /^v0\./.test( process.version );
|
||||||
|
|
||||||
// Support: Node.js <4
|
// Support: Node.js <4
|
||||||
// Skip running tasks that dropped support for Node.js 0.10 & 0.12
|
// Skip running tasks that dropped support for Node.js 0.12
|
||||||
// in those Node versions.
|
// in this Node version.
|
||||||
function runIfNewNode( task ) {
|
function runIfNewNode( task ) {
|
||||||
return oldNode ? "print_old_node_message:" + task : task;
|
return oldNode ? "print_old_node_message:" + task : task;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user