Skip to content

Commit

Permalink
ci(travis): Drop NodeJS 0.12 support officially & remove from CI Matr…
Browse files Browse the repository at this point in the history
…ix (#3605)
  • Loading branch information
TheLarkInn committed Dec 28, 2016
1 parent 5f14559 commit 1160ec8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Expand Up @@ -4,7 +4,8 @@
"eslint:recommended"
],
"env": {
"node": true
"node": true,
"es6": true
},
"rules": {
"strict": 0,
Expand Down
4 changes: 0 additions & 4 deletions .travis.yml
Expand Up @@ -20,9 +20,6 @@ matrix:
- os: linux
node_js: "4"
env: NO_WATCH_TESTS=1 JOB_PART=test
- os: linux
node_js: "v0.12.17"
env: NO_WATCH_TESTS=1 JOB_PART=test
- os: osx
node_js: "7"
env: NO_WATCH_TESTS=1 JOB_PART=test
Expand All @@ -33,7 +30,6 @@ matrix:
node_js: "4"
env: NO_WATCH_TESTS=1 JOB_PART=test
allow_failures:
- node_js: "v0.12.17"
- os: osx
fast_finish: true

Expand Down
7 changes: 2 additions & 5 deletions ci/travis-install.sh
@@ -1,8 +1,5 @@
#!/bin/bash
set -ev

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

0 comments on commit 1160ec8

Please sign in to comment.