Vylpes
1d26026b1a
Co-authored-by: Ethan Lane <ethan@vylpes.com> Reviewed-on: https://gitea.vylpes.xyz/Vylpes/random-bunny/pulls/32
24 lines
No EOL
332 B
YAML
24 lines
No EOL
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 |