Skip to content
This repository has been archived by the owner on Jan 26, 2019. It is now read-only.

Commit

Permalink
Test Node 8 on Travis (#2659)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
gaearon authored and wmonk committed Aug 7, 2017
1 parent 22a9503 commit 3ad87f7
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
language: node_js
node_js:
- 6
- 7
- 8
cache:
directories:
- node_modules
Expand Down
6 changes: 5 additions & 1 deletion tasks/e2e-installs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion tasks/e2e-kitchensink.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 5 additions & 1 deletion tasks/e2e-simple.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3ad87f7

Please sign in to comment.