.appveyor.yml 572 B

1234567891011121314151617181920212223242526272829
  1. # appveyor file
  2. # http://www.appveyor.com/docs/appveyor-yml
  3. max_jobs: 1
  4. shallow_clone: true
  5. init:
  6. - git config --global core.autocrlf true
  7. image:
  8. - Visual Studio 2017
  9. environment:
  10. nodejs_version: "4"
  11. matrix:
  12. - PLATFORM: windows-10-store
  13. JUST_BUILD: --justBuild
  14. - PLATFORM: local\browser
  15. install:
  16. - npm cache clean -f
  17. - node --version
  18. - npm install -g cordova-paramedic@https://github.com/apache/cordova-paramedic.git
  19. - npm install -g cordova
  20. build: off
  21. test_script:
  22. - cordova-paramedic --config pr\%PLATFORM% --plugin . %JUST_BUILD%