Skip to content

Commit 543b62c

Browse files
committed
add appveyor config file
1 parent adcf980 commit 543b62c

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

appveyor.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
image: Visual Studio 2017
2+
3+
# Fix line endings in Windows. (runs before repo cloning)
4+
init:
5+
- git config --global core.autocrlf input
6+
7+
environment:
8+
matrix:
9+
- nodejs_version: 8
10+
11+
# Finish on first failed build
12+
matrix:
13+
fast_finish: true
14+
15+
platform:
16+
- x64
17+
18+
branches:
19+
only:
20+
- master
21+
22+
# Disable Visual Studio build and deploy
23+
build: off
24+
deploy: off
25+
26+
install:
27+
- ps: Install-Product node $env:nodejs_version $env:platform
28+
- yarn install
29+
30+
test_script:
31+
- node --version
32+
- yarn build
33+
- yarn test
34+
35+
cache:
36+
- node_modules
37+
- "%LOCALAPPDATA%/Yarn"

0 commit comments

Comments
 (0)