embark-area-51/appveyor.yml

25 lines
548 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:
nodejs_version: "8"
# 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@5.7
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
- npm run lint
2018-04-11 13:00:08 +00:00
- npm run test
- npm run testdapp_1
- npm run testdapp_2
2018-04-11 12:51:54 +00:00
# Don't actually build.
build: off