您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

.drone.yml 472B

1234567891011121314151617181920212223242526
  1. ---
  2. #################
  3. # Frontend Test #
  4. #################
  5. kind: pipeline
  6. name: frontend_run_tests
  7. steps:
  8. - name: test-frontend
  9. image: node
  10. volumes:
  11. - name: frontend_node_cache
  12. path: /drone/src/frontend/node_modules
  13. commands:
  14. - pwd
  15. - cd ./frontend
  16. - npm install
  17. - npm test
  18. volumes:
  19. - name: frontend_node_cache
  20. host:
  21. path: /tmp/cache/drone/frontend/node_modules
  22. ---