random-bunny/.drone.yml
Vylpes ee4f1873d1 Fix type error (#34)
Co-authored-by: Ethan Lane <ethan@vylpes.com>
Reviewed-on: https://gitea.vylpes.xyz/RabbitLabs/random-bunny/pulls/34
2022-08-12 17:10:03 +01:00

22 lines
303 B
YAML

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