marked-mfm/.woodpecker.yml
Sol Fisher Romanoff 1dde5177ea
Add bundler
2022-07-08 23:51:13 +03:00

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