Remove node v9 from travis builds

We have to keep this until `npm install -g npm` supports node v9, see nodejs/node#16649
This commit is contained in:
Goh Jia Hao 2017-11-12 17:47:32 +08:00
parent 300bf28b51
commit fef8ad2040
1 changed files with 6 additions and 1 deletions

View File

@ -5,7 +5,12 @@ addons:
repo_token: CODE_CLIMATE_TOKEN
node_js:
- node
# NPM currently does not support node 9 https://github.com/nodejs/node/issues/16649, we have to
# wait for the next release
# - node
- 'lts/*'
- '8'
- '7'
- '6'
- '5'
- '4'