選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

appveyor.yml 415B

1234567891011121314151617181920212223242526272829
  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. - git reset --hard HEAD
  18. - yarn
  19. - node --version
  20. build_script:
  21. - yarn build
  22. test: off