Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Use shell expansion when selecting which NODE_VERSION to build
With this change we no longer need to update the .travis.yml file for
each minor update of a given Node.js image. Bash shell expansion will
determine the right version to build based on the available directories
(4.7, 6.9, 7.5 etc.)
  • Loading branch information
Christopher Horrell committed Feb 1, 2017
commit 7dbb287157265e410f6370075e47f211ef37c372
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ script:

env:
matrix :
- NODE_VERSION: '4.7'
- NODE_VERSION: '6.9'
- NODE_VERSION: '7.5'
- NODE_VERSION: '4.*'
- NODE_VERSION: '6.*'
- NODE_VERSION: '7.*'