Files
config/.woodpecker/test.yml
T
2025-06-09 00:05:37 +02:00

18 lines
264 B
YAML

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