diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..c171b3c --- /dev/null +++ b/.drone.yml @@ -0,0 +1,15 @@ +kind: pipeline +type: docker +name: 构建任务 +steps: +- name: 编译文件 + image: node:16.13.1 + pull: if-not-exists # always never + commands: + - node -v + - npm -v + - npm install -g nrm + - nrm ls + - nrm use taobao + - npm i + - npm run docs:build