Fixed failing travis builds (#2040)

* Added condition npm install to travis

* Updated node_version.sh perms
pull/2042/head
Garrett Luu 3 years ago committed by GitHub
parent 8795f86e12
commit 93ec51ec76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -44,7 +44,7 @@ matrix:
before_install:
- "npm config set strict-ssl false"
# - "npm install -g npm@4.3.0"
- "./misc/node_version.sh"
- "npm install -g mocha@2.x voc"
- "npm install blanket"
- "npm install word"

@ -0,0 +1,11 @@
#! /usr/bin/env bash
# This script will check the current version of node and install another version
# of npm if node is version 0.8
version=$(node --version)
if [[ $version =~ v0\.8\. ]]
then
npm install -g npm@4.3.0
fi
Loading…
Cancel
Save