Files
rust/.woodpecker/test.yml
T
pascal 28cc1afaa6
ci/woodpecker/push/test Pipeline was successful
Add CI
2024-05-21 15:40:48 +02:00

23 lines
344 B
YAML

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