We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c804e8 commit f52ab9aCopy full SHA for f52ab9a
1 file changed
appveyor.yml
@@ -0,0 +1,28 @@
1
+# appveyor file
2
+# http://www.appveyor.com/docs/appveyor-yml
3
+
4
+init:
5
+ - git config --global core.autocrlf input
6
7
+# what combinations to test
8
+environment:
9
+ matrix:
10
+ - nodejs_version: 0.10
11
+ - nodejs_version: 0.8
12
+ - nodejs_version: 0.11
13
14
+# combinations having this can fail
15
+matrix:
16
+ allow_failures:
17
18
19
+install:
20
+ - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
21
+ - npm install
22
23
+build: off
24
25
+test_script:
26
+ - node --version
27
+ - npm --version
28
+ - cmd: npm test
0 commit comments