random-bunny/.drone.yml
Ethan Lane 2d7046bd22
All checks were successful
continuous-integration/drone/push Build is passing
Add renovate to pipelines
2023-02-27 18:34:31 +00:00

23 lines
320 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/*
- renovate/*
event:
- push