Skip to content

Commit

Permalink
Merge pull request #261 from mathiask88/master
Browse files Browse the repository at this point in the history
appVeyor improvements
  • Loading branch information
kkoopa committed Jan 22, 2015
2 parents 775c639 + c9ae540 commit b6aa53e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ environment:
install:
# Get the latest stable version of Node 0.STABLE.latest
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
- IF NOT %nodejs_version% == "1.0" npm install npm
- IF NOT %nodejs_version% == "1.0" move node_modules npm
- IF NOT %nodejs_version% == 1.0 npm -g install npm
- IF NOT %nodejs_version% == 1.0 set PATH=%APPDATA%\npm;%PATH%
# Typical npm stuff.
- npm/.bin/npm install
- npm/.bin/npm run rebuild-tests
- npm install
- npm run rebuild-tests

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

# Don't actually build.
build: off

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

0 comments on commit b6aa53e

Please sign in to comment.