We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fdd00a commit 8fad838Copy full SHA for 8fad838
appveyor.yml
@@ -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