Skip to content

Commit 1160ec8

Browse files
authored
ci(travis): Drop NodeJS 0.12 support officially & remove from CI Matrix (webpack#3605)
1 parent 5f14559 commit 1160ec8

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

.eslintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"eslint:recommended"
55
],
66
"env": {
7-
"node": true
7+
"node": true,
8+
"es6": true
89
},
910
"rules": {
1011
"strict": 0,

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ matrix:
2020
- os: linux
2121
node_js: "4"
2222
env: NO_WATCH_TESTS=1 JOB_PART=test
23-
- os: linux
24-
node_js: "v0.12.17"
25-
env: NO_WATCH_TESTS=1 JOB_PART=test
2623
- os: osx
2724
node_js: "7"
2825
env: NO_WATCH_TESTS=1 JOB_PART=test
@@ -33,7 +30,6 @@ matrix:
3330
node_js: "4"
3431
env: NO_WATCH_TESTS=1 JOB_PART=test
3532
allow_failures:
36-
- node_js: "v0.12.17"
3733
- os: osx
3834
fast_finish: true
3935

ci/travis-install.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
#!/bin/bash
22
set -ev
33

4-
if [ "$TRAVIS_NODE_VERSION" == "v0.12.17" ]; then
5-
npm install --force && npm link && npm link webpack;
6-
else
7-
npm install yarn -g && yarn install && yarn link || true && yarn link webpack;
8-
fi
4+
npm install yarn -g && yarn install && yarn link || true && yarn link webpack;
5+

0 commit comments

Comments
 (0)