mirror of https://github.com/Kylart/KawAnime.git
27 lines
408 B
YAML
27 lines
408 B
YAML
image: Visual Studio 2017
|
|
|
|
cache:
|
|
- node_modules
|
|
- '%USERPROFILE%\.electron'
|
|
|
|
skip_tags: true
|
|
|
|
platform:
|
|
- x64
|
|
|
|
init:
|
|
- git config --global core.autocrlf input
|
|
|
|
install:
|
|
- ps: Install-Product node 12 x64
|
|
- npm install
|
|
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- npm run lint
|
|
- npm run pack
|
|
- npm run test
|
|
|
|
build_script:
|
|
- IF [%APPVEYOR_REPO_BRANCH%]==[master] npm run publish:win |