Skip to content

Commit

Permalink
install always latest yarn version
Browse files Browse the repository at this point in the history
  • Loading branch information
philippkuehn committed Nov 14, 2018
1 parent 902083e commit a78a2c9
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
language: node_js

node_js:
- "10"
- 10

cache: yarn

before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.10.1
- export PATH="$HOME/.yarn/bin:$PATH"
- curl -o- -L https://yarnpkg.com/install.sh | bash -s
- export PATH=$HOME/.yarn/bin:$PATH

install:
- yarn install --production=false
- yarn install

script:
- yarn lint
- yarn test

0 comments on commit a78a2c9

Please sign in to comment.