Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -104,7 +104,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