web 3d图形渲染器
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.

25 lines
318 B

  1. cache:
  2. key: "$CI_JOB_NAME"
  3. untracked: true
  4. paths:
  5. - node_modules/
  6. before_script:
  7. - npm install
  8. .test_template: &npm_test
  9. script:
  10. - npm run lint
  11. - npm test
  12. test:node8:
  13. image: node:8
  14. <<: *npm_test
  15. test:node10:
  16. image: node:10
  17. <<: *npm_test
  18. test:node12:
  19. image: node:12
  20. <<: *npm_test