Skip to content

Commit 2d60f13

Browse files
authored
Merge pull request webpack#5823 from webpack/ci/exclude-old-version
Exclude testing in older versions
2 parents 0b3dfcb + 0b6e9d2 commit 2d60f13

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = function(config) {
2-
return !/^v4/.test(process.version);
2+
return !/^v(4|6)/.test(process.version);
33
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = function(config) {
2-
return !/^v4/.test(process.version);
2+
return !/^v(4|6)/.test(process.version);
33
};

0 commit comments

Comments
 (0)