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

appveyor.yml 282B

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