random-bunny/.drone.yml
Vylpes 1d26026b1a Add .drone.yml (#32)
Co-authored-by: Ethan Lane <ethan@vylpes.com>
Reviewed-on: https://gitea.vylpes.xyz/Vylpes/random-bunny/pulls/32
2022-08-05 15:24:55 +01:00

24 lines
332 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
- pull_request
- tag