Commit 657b3fd6 authored by Dan Abramov's avatar Dan Abramov Committed by GitHub
Browse files

Test Node 8 on Travis (#2659)

* Test Node 8 on Travis

We still test Node 7 on AppVeyor

* Update e2e-installs.sh

* Update e2e-kitchensink.sh

* Update e2e-simple.sh

* Update e2e-installs.sh

* Update e2e-kitchensink.sh

* Update e2e-installs.sh

* Update e2e-simple.sh

* Update e2e-simple.sh

* Update e2e-kitchensink.sh

* Update e2e-installs.sh
parent d0aa6b23
Showing with 16 additions and 4 deletions
+16 -4
......@@ -2,7 +2,7 @@
language: node_js
node_js:
- 6
- 7
- 8
cache:
directories:
- node_modules
......
......@@ -95,7 +95,11 @@ fi
if hash npm 2>/dev/null
then
npm cache clean
# npm 5 is too buggy right now
if [ $(npm -v | head -c 1) -eq 5 ]; then
npm i -g npm@^4.x
fi;
npm cache clean || npm cache verify
fi
# Prevent lerna bootstrap, we only want top-level dependencies
......
......@@ -87,7 +87,11 @@ fi
if hash npm 2>/dev/null
then
npm cache clean
# npm 5 is too buggy right now
if [ $(npm -v | head -c 1) -eq 5 ]; then
npm i -g npm@^4.x
fi;
npm cache clean || npm cache verify
fi
# Prevent lerna bootstrap, we only want top-level dependencies
......
......@@ -86,7 +86,11 @@ fi
if hash npm 2>/dev/null
then
npm cache clean
# npm 5 is too buggy right now
if [ $(npm -v | head -c 1) -eq 5 ]; then
npm i -g npm@^4.x
fi;
npm cache clean || npm cache verify
fi
# Prevent lerna bootstrap, we only want top-level dependencies
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment