mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
22 lines
383 B
YAML
22 lines
383 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 10 x64
|
|
|
|
build_script:
|
|
- npm install
|
|
- ps: cd packages/app-desktop
|
|
- npm run dist
|
|
|
|
test: off
|
|
|
|
# We only want to build tags
|
|
skip_non_tags: true |