Created
January 17, 2017 01:43
-
-
Save acburdine/61f4f91bacf6554fccdaa394fd14ebbd to your computer and use it in GitHub Desktop.
Adding Yarn to Travis CI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
addons: | |
apt: | |
sources: | |
- sourceline: 'deb https://dl.yarnpkg.com/debian/ stable main' | |
key_url: 'https://dl.yarnpkg.com/debian/pubkey.gpg' | |
packages: | |
- yarn | |
install: | |
- yarn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
More recent update for those who find this - Here's how to install the latest version of yarn into Travis's
trusty
docker container:if you want a specific version of yarn, just put it into the
YARN_VERSION
variable... Enjoy!