diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..0605df7 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,34 @@ +kind: pipeline +type: docker +name: node10 + +steps: +- name: build + image: node:10-alpine + commands: + - npm install + - npm run dist + +--- +kind: pipeline +type: docker +name: node12 + +steps: +- name: build + image: node:12-alpine + commands: + - npm install + - npm run dist + +--- +kind: pipeline +type: docker +name: node14 + +steps: +- name: build + image: node:14-alpine + commands: + - npm install + - npm run dist