appveyor.yml 461 B

12345678910111213141516171819202122232425262728293031
  1. version: 0.1.{build}
  2. branches:
  3. only:
  4. - master
  5. image: Visual Studio 2017
  6. platform:
  7. - x64
  8. cache:
  9. - node_modules
  10. - '%APPDATA%\npm-cache'
  11. - '%USERPROFILE%\.electron'
  12. - '%USERPROFILE%\AppData\Local\Yarn\cache'
  13. init:
  14. - git config --global core.autocrlf input
  15. install:
  16. - ps: Install-Product node 8 x64
  17. - choco install yarn --ignore-dependencies
  18. - git reset --hard HEAD
  19. - yarn
  20. - node --version
  21. build_script:
  22. - yarn build
  23. test: off