1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/appveyor.yml
2019-12-14 01:28:37 +00:00

28 lines
531 B
YAML

image: Visual Studio 2017
platform:
- x64
# cache:
# Not caching node_modules because appveyor doesn't restore it afterwards (not sure why)
# - node_modules
# - '%USERPROFILE%\.electron'
install:
- ps: Install-Product node 8 x64
- yarn
build_script:
- ps: xcopy /C /I /H /R /Y /S ReactNativeClient\lib ElectronClient\app\lib
- npm install
- npm run tsc
- ps: cd Tools
- npm install
- ps: cd ..\ElectronClient\app
- npm install
- yarn dist
test: off
# We only want to build tags
skip_non_tags: true