From 29f8d03b8ef32bd49c8c4c4bb1f46f32cd3a8f17 Mon Sep 17 00:00:00 2001 From: Caitlin Potter Date: Thu, 14 Nov 2019 11:17:18 -0500 Subject: [PATCH 1/3] Use stable and LTS Node versions on TravisCI --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9c77959..ca609e6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: node_js node_js: - - '0.10' - - '0.11' + - lts/* + - node install: time npm install From 72043243b06a84f2e94db742b8fc1e599d8f6c8e Mon Sep 17 00:00:00 2001 From: Ron S Date: Wed, 13 Nov 2019 20:56:34 -0500 Subject: [PATCH 2/3] Update dependencies --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index be2d3ef..fcae8b0 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,6 @@ }, "homepage": "https://github.com/caitp/node-mock-stdin", "devDependencies": { - "nodeunit": "^0.9.0" + "nodeunit": "^0.11.3" } } From 5591609faf63abb1598a8326802501531ad3d061 Mon Sep 17 00:00:00 2001 From: Caitlin Potter Date: Thu, 14 Nov 2019 11:34:27 -0500 Subject: [PATCH 3/3] Avoid timing NPM install jobs --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index ca609e6..2c2d4e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,8 @@ node_js: - node install: - time npm install - time npm install coveralls jscoverage nodeunit + - npm install + - npm install coveralls jscoverage nodeunit script: tools/travis.sh