.drone.yml 148 B

12345678910111213
  1. kind: pipeline
  2. type: docker
  3. name: default
  4. steps:
  5. - name: build-ui
  6. image: node:12.7.0
  7. commands:
  8. - cd client
  9. - yarn install
  10. - yarn build