Skip to content

Commit 8fad838

Browse files
committed
Initial appveyor config
1 parent 9fdd00a commit 8fad838

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

Diff for: appveyor.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
platform:
2+
- x64
3+
4+
image:
5+
- Visual Studio 2017
6+
7+
init:
8+
- git config --global core.autocrlf true
9+
10+
environment:
11+
matrix:
12+
- nodejs_version: "12"
13+
- nodejs_version: "11"
14+
- nodejs_version: "10"
15+
16+
clone_folder: c:\projects\nut
17+
18+
install:
19+
- ps: Install-Product node $env:nodejs_version x64
20+
- node --version
21+
- cd c:\projects\nut
22+
- npm ci
23+
- npm run compile
24+
25+
build: off
26+
27+
test_script:
28+
- npm test

0 commit comments

Comments
 (0)