embark-area-51/appveyor.yml

25 lines
539 B
YAML
Raw Normal View History

2018-04-11 12:51:54 +00:00
# Test against the latest version of this Node.js version
environment:
matrix:
- nodejs_version: "8"
- nodejs_version: "10"
2018-04-11 12:51:54 +00:00
# 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 -g npm@latest
2018-04-11 12:51:54 +00:00
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
2018-09-11 18:11:43 +00:00
# run tests
- npm test
2018-04-11 12:51:54 +00:00
# Don't actually build.
build: off