We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2363a6f commit 7335a46Copy full SHA for 7335a46
.travis.yml
@@ -25,7 +25,7 @@ install:
25
- yarn add --force sqlite3 # fix sqlite caching issues
26
27
script:
28
- - if [ "$TEST_SUITE" == "lint" ]; then npm run lint; else npm run test:all; fi
+ - if [ "$TEST_SUITE" == "lint" ]; then yarn run lint; else yarn run test:all; fi
29
30
after_success:
31
- - if [[ "$TRAVIS_NODE_VERSION" == "4" && "$TEST_SUITE" != "lint" ]]; then npm run coverage; fi
+ - if [[ "$TRAVIS_NODE_VERSION" == "4" && "$TEST_SUITE" != "lint" ]]; then yarn run coverage; fi
0 commit comments