thelounge/appveyor.yml
2016-06-13 22:34:34 +03:00

30 lines
503 B
YAML

---
# 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
- npm install mocha-appveyor-reporter
- echo --reporter mocha-appveyor-reporter >> test/mocha.opts
test_script:
- node --version
- npm --version
- npm test
# cache npm modules
cache:
- node_modules
# Don't actually build
build: off