-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappveyor.yml
More file actions
35 lines (29 loc) · 840 Bytes
/
appveyor.yml
File metadata and controls
35 lines (29 loc) · 840 Bytes
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
environment:
matrix:
- nodejs_version: "8"
init:
- git config --global core.symlinks true
install:
- ps: Install-Product node $env:nodejs_version x64
- node --version
- choco install imagemagick --version 7.0.7.6
- choco install ffmpeg --version 3.4.2
- refreshenv
- npm install
cache:
# - "%USERPROFILE%\\.flow-typed"
- node_modules
# - "%LOCALAPPDATA%\\Yarn"
- '%APPDATA%\npm-cache' # npm cache
test_script:
- pwd
- npm run build
- npm run flow-typed install
# debugging Appveyor build. More info:
# https://www.appveyor.com/docs/how-to/rdp-to-build-worker/
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
- npm test
# Don't actually build.
build: off
after_test:
- npm run codecov