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 d2206fd commit 0321713Copy full SHA for 0321713
.travis.yml
@@ -14,9 +14,9 @@ matrix:
14
- node_js: "0.10"
15
env: WEBPACK_VERSION="1"
16
before_script:
17
- - 'if [ "$WEBPACK_VERSION" ]; then npm install webpack@$WEBPACK_VERSION; fi'
+ - 'if [ "$WEBPACK_VERSION" ]; then yarn add webpack@$WEBPACK_VERSION; fi'
18
script:
19
- - 'if [ -n "${LINT-}" ]; then npm run lint ; fi'
20
- - 'if [ -z "${LINT-}" ]; then npm run test-ci ; fi'
+ - 'if [ -n "${LINT-}" ]; then yarn lint ; fi'
+ - 'if [ -z "${LINT-}" ]; then yarn test-ci ; fi'
21
after_success:
22
- - npm run coverage
+ - yarn coverage
0 commit comments