Skip to content

Commit

Permalink
ci(travis): make travis config able to run on node 4 again
Browse files Browse the repository at this point in the history
  • Loading branch information
sverweij committed Jan 21, 2018
1 parent 24bdd53 commit bc8440b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ sudo: false
language: node_js

node_js:
- "4"
- "6"
- "8"
- "9"
Expand All @@ -11,8 +12,9 @@ install:
- npm install

script:
- make lint depcruise cover
- npm run nsp
- make lint depcruise
- 'if test `node --version | cut -c 2` = 4; then npm run test:cover-node4; else npm run test:cover; fi'
- 'if test `node --version | cut -c 2` = 8; then npm run nsp; fi'

branches:
except:
Expand Down

0 comments on commit bc8440b

Please sign in to comment.