From dd230f6a6234a6ecd2c24c03358d01a97653f14b Mon Sep 17 00:00:00 2001 From: Alejandro Oviedo Date: Wed, 18 Jan 2017 21:47:04 +0200 Subject: 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. --- .travis.yml | 6 +++--- 1 file 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 -- cgit v1.2.3