We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22a43a5 commit 378d34cCopy full SHA for 378d34c
appveyor.yml
@@ -0,0 +1,27 @@
1
+environment:
2
+ matrix:
3
+ - nodejs_version: "10"
4
+ - nodejs_version: "9"
5
+ - nodejs_version: "8"
6
+ - nodejs_version: "6"
7
+ - nodejs_version: "4"
8
+ - nodejs_version: "0.12"
9
+ - nodejs_version: "0.10"
10
+
11
+# Install scripts. (runs after repo cloning)
12
+install:
13
+ # Get the latest stable version of Node.js or io.js
14
+ - ps: Install-Product node $env:nodejs_version
15
+ # install modules
16
+ - npm install
17
18
+# Post-install test scripts.
19
+test_script:
20
+ # Output useful info for debugging.
21
+ - node --version
22
+ - npm --version
23
+ # run tests
24
+ - npm test
25
26
+# Don't actually build.
27
+build: off
0 commit comments