Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
Add AppVeyor testing
Browse files Browse the repository at this point in the history
  • Loading branch information
vladikoff committed Aug 15, 2014
1 parent afb21b2 commit b112f85
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
project_id: "ns3waxwcw8ddcr3f"

# build version format
version: "{build}"

# fix lineendings in Windows
init:
- git config --global core.autocrlf input

# what combinations to test
environment:
matrix:
- nodejs_version: 0.10

# Get the latest stable version of Node 0.STABLE.latest
install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
- npm install -g grunt-cli
- npm install

build: off

test_script:
- node --version
- npm --version
- ps: grunt test --no-color # PowerShell
- cmd: grunt test --no-color

0 comments on commit b112f85

Please sign in to comment.