mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 23:42:53 +08:00
20 lines
309 B
YAML
20 lines
309 B
YAML
# appveyor file
|
|
# http://www.appveyor.com/docs/appveyor-yml
|
|
|
|
environment:
|
|
matrix:
|
|
- nodejs_version: "4"
|
|
- nodejs_version: "6"
|
|
- nodejs_version: "8"
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- npm install
|
|
|
|
build: off
|
|
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- npm test
|