Skip to content

Commit

Permalink
added node.js specific build info
Browse files Browse the repository at this point in the history
  • Loading branch information
davglass committed Jul 10, 2017
1 parent e2395ba commit 01efad1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions appveyor.yml
Expand Up @@ -4,3 +4,23 @@ pull_requests:
skip_tags: true
build:
verbosity: minimal
environment:
nodejs_version: "6"

# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install

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

# Don't actually build.
build: off

0 comments on commit 01efad1

Please sign in to comment.