Skip to content

Commit 0826a0d

Browse files
authored
Merge pull request #1 from OpenZWave/master
pull from node-openzwave-shared master
2 parents b70501d + 5a75e35 commit 0826a0d

File tree

1 file changed

+20
-7
lines changed

1 file changed

+20
-7
lines changed

appveyor.yml

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,29 @@
11
version: 1.0.{build}
22

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+
313
# branches to build
414
branches:
515
# whitelist
616
only:
717
- master
18+
- appveyor
819

9-
# Build worker image (VM template)
10-
image: Visual Studio 2015
11-
12-
platform:
13-
- 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
1427

15-
build_script:
16-
- cmd: npm install
28+
# Don't actually build.
29+
build: off

0 commit comments

Comments
 (0)