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.
2 parents b70501d + 5a75e35 commit 0826a0dCopy full SHA for 0826a0d
appveyor.yml
@@ -1,16 +1,29 @@
1
version: 1.0.{build}
2
3
+environment:
4
+ nodejs_version: "10"
5
+
6
+# Install scripts. (runs after repo cloning)
7
+install:
8
+ # Get the latest stable version of Node.js or io.js
9
+ - ps: Install-Product node $env:nodejs_version
10
+ # install modules
11
+ - npm install
12
13
# branches to build
14
branches:
15
# whitelist
16
only:
17
- master
18
+ - appveyor
19
-# Build worker image (VM template)
-image: Visual Studio 2015
-
-platform:
- - x86
20
+# Post-install test scripts.
21
+test_script:
22
+ # Output useful info for debugging.
23
+ - node --version
24
+ - npm --version
25
+ # run tests
26
+ #- npm test
27
-build_script:
-- cmd: npm install
28
+# Don't actually build.
29
+build: off
0 commit comments