From 27be178da30a92f67874ffb4d73b88ec628f382b Mon Sep 17 00:00:00 2001 From: TheEmeraldStarr <46467239+QuiteAFancyEmerald@users.noreply.github.com> Date: Fri, 6 Nov 2020 18:47:31 -0800 Subject: [PATCH] Update .travis.yml --- .travis.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3e7b660c..cea8e57a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,6 @@ language: node_js node_js: - - '12' -before_install: - # Update the npm client. Older clients cannot, e.g., handle scoped modules. - - npm update -g npm -after_script: - - npm run coverage - - npm start + - 'stable' +install: npm install +script: npm start +after_success: npm run coverage