Added condition npm install to travis

This commit is contained in:
Garrett Luu 2020-07-01 16:13:45 -07:00
parent 8795f86e12
commit 679c10713a
2 changed files with 12 additions and 1 deletions

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

11
misc/node_version.sh Executable file

@ -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