We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7544bd3 commit d71b80aCopy full SHA for d71b80a
.travis.yml
@@ -8,7 +8,6 @@ stages:
8
# defaults
9
language: node_js
10
node_js: '9'
11
-env: PATH=~/npm/node_modules/.bin:$PATH
12
# `nvm install` happens before the cache is restored, which means
13
# we must install our own npm elsewhere (`~/npm`)
14
before_install: |
@@ -17,6 +16,8 @@ before_install: |
17
16
cd ~/npm && npm install npm
18
cd -
19
} || true
+ # avoids bugs around https://github.com/travis-ci/travis-ci/issues/5092
20
+ export PATH=~/npm/node_modules/.bin:$PATH
21
# this avoids compilation in most cases (where we don't need it)
22
install: npm ci --ignore-scripts
23
cache:
0 commit comments