Add .drone.yml (#32)

Co-authored-by: Ethan Lane <ethan@vylpes.com>
Reviewed-on: https://gitea.vylpes.xyz/Vylpes/random-bunny/pulls/32
This commit is contained in:
Vylpes 2022-08-05 15:24:55 +01:00
parent 1e123de1e1
commit 1d26026b1a

24
.drone.yml Normal file
View file

@ -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