travis -- install lts/* version of node via travis configuration instead of brew

This commit is contained in:
Eugene Bujak 2018-08-31 13:30:41 +03:00
parent ad91ba8f43
commit 3af62e463a

View File

@ -6,6 +6,9 @@ go:
- master
- tip
node_js:
- lts/*
os:
- linux
- osx
@ -13,7 +16,7 @@ os:
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl -o- -L https://yarnpkg.com/install.sh | bash; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew upgrade && brew install yarn; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install yarn; fi
script:
- cd dnsfilter && go get -d -t . && go test