random-bunny/.woodpecker.yml
Ethan Lane 023062922a
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Make execute on PR
2024-02-19 14:40:59 +00:00

23 lines
540 B
YAML

steps:
build:
image: node
commands:
- yarn install --frozen-lockfile
- yarn build
when:
event: [ push, pull_request ]
branch: [ hotfix/*, feature/*, renovate/*, develop, main ]
lint:
image: node
commands:
- yarn lint
when:
event: [ push, pull_request ]
branch: [ hotfix/*, feature/*, renovate/*, develop, main ]
test:
image: node
commands:
- yarn test
when:
event: [ push, pull_request ]
branch: [ hotfix/*, feature/*, renovate/*, develop, main ]