Vylpes
031a5455b5
- Bump minimatch from 3.0.4 to 3.1.2 - Update discord links Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ethan Lane <ethan@vylpes.com> Reviewed-on: https://gitea.vylpes.xyz/RabbitLabs/random-bunny/pulls/41 Reviewed-by: VylpesTester <tester@vylpes.com>
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 |