hardlounge/appveyor.yml

24 lines
355 B
YAML
Raw Normal View History

2016-05-30 23:20:34 +00:00
---
# http://www.appveyor.com/docs/appveyor-yml
# Build version format
version: "{build}"
# Do not build on tags (GitHub only)
skip_tags: true
environment:
nodejs_version: '4'
install:
- ps: Install-Product node $env:nodejs_version
- npm install
test_script:
- node --version
- npm --version
- npm test
# Don't actually build
build: off