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

.travis.yml 938B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. sudo: false
  2. # NOTE: dist is added here to ensure that Travis CI works consistently
  3. # on Node.js 12. It is desired to remove it once this issue is resolved
  4. # or otherwise goes away.
  5. dist: trusty
  6. env:
  7. global:
  8. - ANDROID_API_LEVEL=28
  9. - ANDROID_BUILD_TOOLS_VERSION=28.0.3
  10. - TERM=dumb # Keep gradle from crapping all over the log
  11. matrix:
  12. - nodejs_version=6
  13. - nodejs_version=8
  14. - nodejs_version=10
  15. - nodejs_version=12
  16. language: android
  17. jdk:
  18. - oraclejdk8
  19. android:
  20. components:
  21. - tools
  22. - build-tools-$ANDROID_BUILD_TOOLS_VERSION
  23. - android-$ANDROID_API_LEVEL
  24. licenses:
  25. - 'android-sdk-preview-license-.+'
  26. - 'android-sdk-license-.+'
  27. - 'google-gdk-license-.+'
  28. before_install:
  29. - nvm install $nodejs_version
  30. - node --version
  31. - npm --version
  32. - gradle --version
  33. install:
  34. - npm install
  35. - npm install -g codecov
  36. script:
  37. - npm test
  38. - npm run cover
  39. after_script:
  40. - codecov