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