Skip to content

Commit

Permalink
Use preinstalled Yarn on Appveyor (#5548)
Browse files Browse the repository at this point in the history
* Use preinstalled Yarn on Appveyor

* Simplify config
  • Loading branch information
thymikee authored and cpojer committed Feb 13, 2018
1 parent 133a9a1 commit 2df9e4c
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,15 @@ init:
install:
- ps: Install-Product node $env:nodejs_version x64
- node --version
- curl -fsSL -o yarn.js https://github.com/yarnpkg/yarn/releases/download/v1.3.2/yarn-1.3.2.js
- node ./yarn.js --version
- node ./yarn.js install
- node ./yarn.js run build
- yarn

cache:
- node_modules
- .eslintcache
- "%LOCALAPPDATA%\\Yarn"

test_script:
- node ./yarn.js run jest --color
- yarn jest --color

# Don't actually build.
build: off
Expand Down

0 comments on commit 2df9e4c

Please sign in to comment.