random-bunny/.drone.yml

30 lines
432 B
YAML
Raw Normal View History

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
- name: lint
image: node
commands:
- yarn lint
depends_on:
- build
trigger:
branch:
- develop
- feature/*
- hotfix/*
2023-02-27 18:34:31 +00:00
- renovate/*
event:
- push