random-bunny/.woodpecker.yml

23 lines
540 B
YAML
Raw Normal View History

2024-02-19 14:39:22 +00:00
steps:
build:
image: node
commands:
- yarn install --frozen-lockfile
- yarn build
when:
2024-02-19 14:40:59 +00:00
event: [ push, pull_request ]
2024-02-19 14:39:22 +00:00
branch: [ hotfix/*, feature/*, renovate/*, develop, main ]
lint:
image: node
commands:
- yarn lint
when:
2024-02-19 14:40:59 +00:00
event: [ push, pull_request ]
2024-02-19 14:39:22 +00:00
branch: [ hotfix/*, feature/*, renovate/*, develop, main ]
test:
image: node
commands:
- yarn test
when:
2024-02-19 14:40:59 +00:00
event: [ push, pull_request ]
2024-02-19 14:39:22 +00:00
branch: [ hotfix/*, feature/*, renovate/*, develop, main ]