diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..d6bd4e2 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,23 @@ +--- +kind: pipeline +name: node 14 + +steps: +- name: test + image: node:14 + commands: + - npm install + - npm run build + - npm test + +--- +kind: pipeline +name: node 16 + +steps: +- name: test + image: node:16 + commands: + - npm install + - npm run build + - npm test