Skip to content

Commit

Permalink
fix(travis): manually install yarn on Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
armandabric committed Jul 24, 2017
1 parent 7004cec commit b8a4c1a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@ branches:
- master
- /^greenkeeper\/.*$/
cache: yarn

# Since the upgrade to Ubuntu Precise, yarn is not available to run scripts: `yarn run foo`
# So let's install it manually
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"

0 comments on commit b8a4c1a

Please sign in to comment.