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 bc0a612 commit f7785a6Copy full SHA for f7785a6
appveyor.yml
@@ -0,0 +1,27 @@
1
+# Test against this version of Node.js
2
+environment:
3
+ matrix:
4
+ # node.js
5
+ - nodejs_version: "0.10"
6
+ - nodejs_version: "0.12"
7
+ - nodejs_version: "4"
8
+ - nodejs_version: "5"
9
+
10
+# Install scripts. (runs after repo cloning)
11
+install:
12
+ # Get the latest stable version of Node.js or io.js
13
+ - ps: Install-Product node $env:nodejs_version
14
+ # install modules
15
+ - npm config set loglevel warn
16
+ - npm install --silent
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