Files
rand/.woodpecker/test.yml
T
pascal 74bcdc3091
ci/woodpecker/manual/test Pipeline was successful
Add CI
2024-06-11 08:22:26 +02:00

23 lines
365 B
YAML

when:
- path:
include: [
'index.ts',
'index.test.ts',
]
steps:
install:
image: oven/bun:alpine
when:
- event: [pull_request, push, manual]
commands:
- bun install
test:
image: oven/bun:alpine
when:
- event: [pull_request, push, manual]
depends_on: install
commands:
- bun test