Skip to content

Commit

Permalink
adds appveyor config
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiask88 committed Jan 28, 2018
1 parent d820ab5 commit 7e3ef20
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions appveyor.yml
@@ -0,0 +1,44 @@
# http://www.appveyor.com/docs/appveyor-yml

# Don't actually build
build: off

# Skip tag builds
skip_tags: true

# Set build version format
version: "{build}"

# Set up build environment
environment:
# Test against these versions of Node.js
matrix:
- nodejs_version: "9"
- nodejs_version: "8"
- nodejs_version: "7"
- nodejs_version: "6"
- nodejs_version: "5"
- nodejs_version: "4"

# Build on both platforms
platform:
- x86
- x64

# Install scripts (runs after repo cloning)
install:
# Get the latest version of $env:nodejs_version
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) $env:platform
# Update to latest npm
- npm -g install npm 2>&1>nul
- SET PATH=%APPDATA%\npm;%PATH%
# Output useful info for debugging
- node --version
- npm --version
# Install modules
- npm install

# Post-install test scripts
test_script:
# Run module tests
- npm test

0 comments on commit 7e3ef20

Please sign in to comment.