diff options
author | Jordan Harband <ljharb@gmail.com> | 2018-12-26 14:27:39 -0800 |
---|---|---|
committer | Myles Borins <mylesborins@google.com> | 2019-05-16 14:57:00 -0400 |
commit | e880904d22e8858bed2e5d33d21a08ca0e273d64 (patch) | |
tree | d400ef5d699ba7f2ac57cc498602ae797970c9f3 /deps/npm/.travis.yml | |
parent | f91a818508d522378e062ee60f528d77c49bb435 (diff) | |
download | node-new-e880904d22e8858bed2e5d33d21a08ca0e273d64.tar.gz |
deps: upgrade npm to v6.5.0
PR-URL: https://github.com/nodejs/node/pull/25234
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Lance Ball <lball@redhat.com>
Diffstat (limited to 'deps/npm/.travis.yml')
-rw-r--r-- | deps/npm/.travis.yml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/deps/npm/.travis.yml b/deps/npm/.travis.yml index 3be171f742..72b0f9a52d 100644 --- a/deps/npm/.travis.yml +++ b/deps/npm/.travis.yml @@ -7,7 +7,7 @@ language: node_js matrix: include: # LTS is our most important target - - node_js: "8" + - node_js: "10" # DEPLOY_VERSION is used to set the couchapp setup mode for test/tap/registry.js # only gather coverage info for LTS env: DEPLOY_VERSION=testing COVERALLS_REPO_TOKEN="$COVERALLS_OPTIONAL_TOKEN" @@ -17,13 +17,16 @@ matrix: # previous LTS is next most important - node_js: "6" env: DEPLOY_VERSION=testing - - node_js: "10" + - node_js: "8" env: DEPLOY_VERSION=testing - node_js: "9" env: DEPLOY_VERSION=testing + - node_js: "11" + env: DEPLOY_VERSION=testing script: - - "standard" - - "node . run tap -- \"test/tap/*.js\" \"test/broken-under-nyc/*.js\"" + - "npx standard" + - "node . run licenses" + - "node . run tap -- \"test/tap/*.js\" \"test/broken-under-nyc/*.js\"" notifications: slack: npm-inc:kRqQjto7YbINqHPb1X6nS3g8 cache: @@ -33,4 +36,3 @@ install: - "node . install" script: - "node . run tap -- \"test/tap/*.js\" \"test/broken-under-nyc/*.js\"" - - "node . run licenses" |