Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Use Yarn #488

Merged
merged 2 commits into from
Apr 4, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,21 @@ git:
depth: 10
sudo: false
language: node_js
cache:
directories:
- node_modules
cache: yarn

node_js:
- '7'
- '6'
- '4'

script:
- 'if [ -n "${LINT-}" ]; then npm run lint ; fi'
- npm run test-ci
- 'if [ -n "${LINT-}" ]; then yarn run lint ; fi'
- yarn run test-ci

matrix:
fast_finish: true
include:
- node_js: "node"
env: LINT=true

after_success: npm run coverage-ci
after_success: yarn run coverage-ci
Loading