marked-mfm/.woodpecker.yml

29 lines
383 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 run test
build:
when:
event:
- push
- pull_request
image: node:16
commands:
- npm run build