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 e75e280 commit 049b06fCopy full SHA for 049b06f
.travis.yml
@@ -29,7 +29,8 @@ before_install:
29
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then export PATH=/c/PROGRA~1/Git/usr/bin:/c/PROGRA~1/Git/mingw64/libexec/git-core:$PATH ; fi
30
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then npm config set script-shell powershell ; fi
31
# workspaces require npm 7 or above
32
- - npm install -g npm@latest
+ - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then powershell npm install -g npm@latest ; fi
33
+ - if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then npm install -g npm@latest ; fi
34
35
script: npx nyc -s npm run test -- -- -- -t node --bail
36
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
0 commit comments