.gitlab-ci.yml 271 B

12345678910111213141516171819
  1. cache:
  2. paths:
  3. - node_modules
  4. test:unit-node8:
  5. image: node:8
  6. script:
  7. - node --version
  8. - npm --version
  9. - npm install
  10. - npm test
  11. test:unit-node10:
  12. image: node:10
  13. script:
  14. - node --version
  15. - npm --version
  16. - npm install
  17. - npm test