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
|
2018-04-11 14:41:03 +00:00
|
|
|
- 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
|
|
|
|
- cd tests_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
|