diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..14582fa --- /dev/null +++ b/.drone.yml @@ -0,0 +1,24 @@ +kind: pipeline +name: integration + +steps: + - name: build + image: node + commands: + - yarn install --frozen-lockfile + - name: test + image: node + commands: + - yarn test + depends_on: + - build + +trigger: + branch: + - develop + - feature/* + - hotfix/* + event: + - push + - pull_request + - tag \ No newline at end of file