No Description

.appveyor.yml 542B

12345678910111213141516171819202122232425262728
  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. install:
  15. - npm cache clean -f
  16. - node --version
  17. - npm install -g cordova-paramedic@https://github.com/apache/cordova-paramedic.git
  18. - npm install -g cordova
  19. build: off
  20. test_script:
  21. - cordova-paramedic --config pr\%PLATFORM% --plugin . %JUST_BUILD%