Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
terkelg
GitHub Repository: terkelg/ramme
Path: blob/master/appveyor.yml
106 views
1
image: Visual Studio 2017
2
3
environment:
4
nodejs_version: '8'
5
6
platform:
7
- x86
8
- x64
9
10
cache:
11
- node_modules
12
- '%LOCALAPPDATA%\electron\Cache'
13
- '%LOCALAPPDATA%\electron-builder\cache'
14
- '%USERPROFILE%\.electron'
15
16
install:
17
- ps: Install-Product node 8 x64
18
- yarn
19
20
test_script:
21
- yarn test
22
23
build_script:
24
- yarn dist
25
26