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