diff options
| author | Alejandro Oviedo <[email protected]> | 2017-01-18 21:47:04 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-01-18 21:47:04 +0200 |
| commit | dd230f6a6234a6ecd2c24c03358d01a97653f14b (patch) | |
| tree | 743676443fa5e6e197bf8e415b6b39ce766752f8 | |
| parent | c81c084fc7280c68e8dc470c31e7291eea183c22 (diff) | |
| download | node-coveralls-dd230f6a6234a6ecd2c24c03358d01a97653f14b.tar.xz node-coveralls-dd230f6a6234a6ecd2c24c03358d01a97653f14b.zip | |
don't hardcode minor version
It's making run the CI with older versions of Node releases and more importantly with branches that don't receive security patches.
| -rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 04aaca5..950be54 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,9 +2,9 @@ language: node_js node_js: - "node" - "iojs" - - "6.0" - - "5.0" - - "4.2" + - "6" + - "5" + - "4" - "0.12" - "0.10" script: make test-coveralls |
