embark/appveyor.yml

17 lines
362 B
YAML
Raw Normal View History

2018-04-11 12:51:54 +00:00
environment:
matrix:
- nodejs_version: "8"
- nodejs_version: "10"
2018-04-11 12:51:54 +00:00
install:
# get the latest version of Node.js in a release series
2018-04-11 12:51:54 +00:00
- ps: Install-Product node $env:nodejs_version
# output useful info for debugging
- node --version
- npm --version
2018-04-11 12:51:54 +00:00
# install modules
- npm install
test_script:
- npm run build:node
2018-09-11 18:11:43 +00:00
- npm test
2018-04-11 12:51:54 +00:00
build: off