Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRebecca Turner <me@re-becca.org>2018-12-07 03:36:52 +0300
committerRebecca Turner <me@re-becca.org>2018-12-07 03:36:52 +0300
commit260f271ce48810119d053dfc1c3bb82ab07e4fc4 (patch)
tree17790d8a2d45fe3f9a554fbcf6ef8e28504288e0 /.travis.yml
parentf426a0e6b3ac8823282c92e0eef19e6c29e58cda (diff)
travis: only run license check once per full test run (like standard)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 52707e09a..14d767753 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,8 +24,9 @@ matrix:
- 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:
@@ -35,4 +36,3 @@ install:
- "node . install"
script:
- "node . run tap -- \"test/tap/*.js\" \"test/broken-under-nyc/*.js\""
- - "node . run licenses"