marked-mfm/.woodpecker.yml
2022-07-08 15:04:24 +03:00

20 lines
281 B
YAML

pipeline:
lint:
when:
event:
- push
- pull_request
image: node:16
commands:
- npm install
- npm run lint
test:
when:
event:
- push
- pull_request
image: node:16
commands:
- npm install
- npm run test