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 c5b5550 commit dcf46aaCopy full SHA for dcf46aa
appveyor.yml
@@ -0,0 +1,26 @@
1
+# Test against this version of Node.js
2
+environment:
3
+ matrix:
4
+ # node.js
5
+ - nodejs_version: "4"
6
+ - nodejs_version: "6"
7
+
8
+# Install scripts. (runs after repo cloning)
9
+install:
10
+ # Get the latest stable version of Node.js or io.js
11
+ - ps: Install-Product node $env:nodejs_version
12
+ # install modules
13
+ - npm config set loglevel warn
14
+ - npm i -g npm
15
+ - npm i
16
17
+# Post-install test scripts.
18
+test_script:
19
+ # Output useful info for debugging.
20
+ - node --version
21
+ - npm --version
22
+ # run tests
23
+ - npm test
24
25
+# Don't actually build.
26
+build: off
0 commit comments