Vylpes
ee4f1873d1
Co-authored-by: Ethan Lane <ethan@vylpes.com> Reviewed-on: https://gitea.vylpes.xyz/RabbitLabs/random-bunny/pulls/34
22 lines
No EOL
303 B
YAML
22 lines
No EOL
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 |