Skip to content

Commit

Permalink
Update appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cheton committed Apr 22, 2016
1 parent f68957e commit f333978
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,27 @@
# http://www.appveyor.com/docs/appveyor-yml

#########################
# General Configuration #
#########################

# version format
version: {build}-{branch}

#############################
# Environment Configuration #
#############################

# Test against this version of Node.js
environment:
matrix:
# node.js
- nodejs_version: "4"
- nodejs_version: "5"

#######################
# Build Configuration #
#######################

platform:
- x86
- x64
Expand All @@ -18,13 +33,17 @@ install:
# install modules
- npm install

# Don't actually build.
build: off

#######################
# Tests Configuration #
#######################

# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test

# Don't actually build.
build: off

0 comments on commit f333978

Please sign in to comment.