random-bunny/.drone.yml
Ethan Lane 9b73db9df3
All checks were successful
continuous-integration/drone/push Build is passing
Add build to drone script
2023-04-21 17:48:28 +01:00

24 lines
No EOL
339 B
YAML

kind: pipeline
name: integration
steps:
- name: build
image: node
commands:
- yarn install --frozen-lockfile
- yarn build
- name: test
image: node
commands:
- yarn test
depends_on:
- build
trigger:
branch:
- develop
- feature/*
- hotfix/*
- renovate/*
event:
- push