This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
forked from gruntjs/grunt-contrib-coffee
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |