diff --git a/.drone.yml b/.drone.yml index c2c97f3..6fb8f5f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,3 +1,16 @@ +-- +kind: pipeline +type: docker +name: default + +steps: +- name: build + image: node:10-alpine + commands: + - npm install + - npm run dist + +-- kind: pipeline type: docker name: default @@ -8,3 +21,15 @@ steps: commands: - npm install - npm run dist + +-- +kind: pipeline +type: docker +name: default + +steps: +- name: build + image: node:14-alpine + commands: + - npm install + - npm run dist