mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-31 17:32:51 +08:00
6758793f09
(installed by npm@6.1.0)
21 lines
332 B
YAML
21 lines
332 B
YAML
# appveyor file
|
|
# http://www.appveyor.com/docs/appveyor-yml
|
|
|
|
environment:
|
|
matrix:
|
|
- nodejs_version: "4"
|
|
- nodejs_version: "6"
|
|
- nodejs_version: "8"
|
|
- nodejs_version: "10"
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- npm install
|
|
|
|
build: off
|
|
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- npm test
|