-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathappveyor.yml
37 lines (28 loc) · 818 Bytes
/
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
# http://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: "22"
IE_BIN: "%PROGRAMFILES%\\Internet Explorer\\iexplore.exe"
version: "{build}-{branch}"
init:
- git config --global core.longpaths true
- dir "%PROGRAMFILES%\Internet Explorer"
- set
clone_depth: 1
matrix:
fast_finish: true
cache:
- node_modules
install:
- ps: Install-Product node $env:nodejs_version
- appveyor DownloadFile "https://deac-ams.dl.sourceforge.net/project/graphicsmagick/graphicsmagick-binaries/1.3.45/GraphicsMagick-1.3.45-Q16-win64-dll.exe"
- GraphicsMagick-1.3.45-Q16-win64-dll.exe /SP /VERYSILENT /NORESTART /NOICONS /DIR=%CD%\gm
- set PATH=%CD%\gm;%PATH%
- npm install
test_script:
- node --version
- npm --version
- gm version
- npm run lint
- npm test
build: off