diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..0941218 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,19 @@ +kind: pipeline +type: docker +name: default + +steps: + - name: install + image: node:19.4.0 + commands: + - npm install + + - name: test + image: node:19.4.0 + commands: + - npm test:coverage + + - name: build + image: node:19.4.0 + commands: + - npm run build