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 b50399f commit fc3e45eCopy full SHA for fc3e45e
appveyor.yml
@@ -0,0 +1,25 @@
1
+# Test against the latest version of this Node.js version
2
+environment:
3
+ matrix:
4
+ - nodejs_version: "15"
5
+ - nodejs_version: "14"
6
+ - nodejs_version: "12"
7
+ - nodejs_version: "10"
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 test
23
24
+# Don't actually build.
25
+build: off
0 commit comments