marked-mfm/.woodpecker.yml

29 lines
383 B
YAML
Raw Normal View History

2022-07-08 10:05:07 +00:00
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
2022-07-08 18:25:04 +00:00
build:
when:
event:
- push
- pull_request
image: node:16
commands:
- npm run build