Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

appveyor.yml 310B

12345678910111213141516171819
  1. # appveyor file
  2. # http://www.appveyor.com/docs/appveyor-yml
  3. environment:
  4. matrix:
  5. - nodejs_version: "6"
  6. - nodejs_version: "8"
  7. - nodejs_version: "10"
  8. install:
  9. - ps: Install-Product node $env:nodejs_version
  10. - npm install
  11. build: off
  12. test_script:
  13. - node --version
  14. - npm --version
  15. - npm test