Skip to content

Commit

Permalink
Appveyor yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Nov 16, 2015
1 parent 3741149 commit 511b122
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# http://www.appveyor.com/docs/appveyor-yml

# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf true

# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "4.2"
- nodejs_version: "5"

# Install scripts. (runs after repo cloning)
install:
- git rev-parse HEAD
- md C:\nc
- npm config set cache C:\nc
- npm version
- npm install

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

# Don't actually build.
build: off

# Set build version format here instead of in the admin panel.
version: "{build}"

0 comments on commit 511b122

Please sign in to comment.