Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.travis.yml 319B

12345678910111213141516171819202122
  1. sudo: required
  2. language: node_js
  3. node_js:
  4. - 4
  5. - 6
  6. - 8
  7. services:
  8. - docker
  9. before_script:
  10. - docker run -d -p 27017:27017 mongo:3
  11. - docker ps -a
  12. script:
  13. - npm run lint
  14. - MONGODB_URL=mongodb://localhost/connect-mongo-test npm test
  15. after_success:
  16. - npm install coveralls && npm run cover | coveralls