marked-mfm/.woodpecker.yml
Sol Fisher Romanoff 3a1180bc07
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add bundler
2022-07-08 21:32:58 +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