We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c33972 commit d3454e9Copy full SHA for d3454e9
.travis.yml
@@ -24,8 +24,8 @@ os:
24
before_install:
25
# prevents windows error: npm ERR! ... git-sh-setup: file not found
26
- if [ "$TRAVIS_OS_NAME" = "windows" ]; then export PATH=/c/PROGRA~1/Git/usr/bin:/c/PROGRA~1/Git/mingw64/libexec/git-core:$PATH ; fi
27
- # workspaces requires npm >= 7
28
- - npm install -g npm@>=7
+ # workspaces requires npm 7 or later
+ - npm install -g npm@^7
29
30
script: npx nyc -s npm run test:node -- --bail
31
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
0 commit comments