flaschengeist-schedule/.woodpecker.yml

20 lines
335 B
YAML
Raw Normal View History

2021-12-08 16:33:23 +00:00
pipeline:
lint:
when:
branch: [main, develop]
image: node:lts-alpine
commands:
- yarn install
- yarn lint
publish:
when:
event: tag
tag: v*
branch: [main, develop]
image: node:lts-alpine
commands:
- yarn publish --non-interactive
secrets: [ node_auth_token ]