embark-area-51/appveyor.yml

27 lines
653 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
2018-04-11 15:01:58 +00:00
# tmp fix due to windows npm5 issue
2018-04-11 15:14:01 +00:00
- cd test_apps/test_app/extensions/embark-service && npm install
2018-04-11 13:00:08 +00:00
- npm run testdapp_1
- npm run testdapp_2
2018-04-11 12:51:54 +00:00
# Don't actually build.
build: off