-
Notifications
You must be signed in to change notification settings - Fork 16
/
appveyor.yml
50 lines (38 loc) · 1.03 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
image: Visual Studio 2017
platform:
- x64
environment:
matrix:
- nodejs_version: 10
- nodejs_version: 9
GH_TOKEN:
secure: JQTogieeX60CDa5l+4NGvmE3do+t8iDPrrppjHYfGbx2vlGMvNUtPbJvnsqZ07tF
cache:
- '%LOCALAPPDATA%/Yarn'
- node_modules -> package.json
- app/node_modules -> app/package.json
- flow-typed
- '%USERPROFILE%\.electron'
matrix:
fast_finish: true
build: off
version: '{build}'
shallow_clone: true
clone_depth: 1
install:
- ps: Install-Product node $env:nodejs_version x64
- set CI=true
# NOTE: Remove this if your project is private and you don't have a paid greenkeeper account
- yarn global add greenkeeper-lockfile@2
- yarn
# NOTE: Remove this if your project is private and you don't have a paid greenkeeper account
before_test:
- greenkeeper-lockfile-update
test_script:
- node --version
- yarn lint
- yarn package
- yarn test
- yarn test-e2e
# NOTE: Remove this if your project is private and you don't have a paid greenkeeper account
after_test: greenkeeper-lockfile-upload