marked-mfm/.woodpecker.yml

21 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