浏览代码

Adding drone config

Kirk Trombley 5 年之前
父节点
当前提交
c95a10ca95
共有 1 个文件被更改,包括 13 次插入0 次删除
  1. 13 0
      .drone.yml

+ 13 - 0
.drone.yml

@@ -0,0 +1,13 @@
+kind: pipeline
+type: docker
+name: default
+
+steps:
+- name: build-ui
+  image: node:12.7.0
+  commands:
+  - cd client
+  - yarn install
+  - yarn build
+
+