woodpecker/.woodpecker/web.yml

46 lines
699 B
YAML
Raw Normal View History

pipeline:
deps:
image: node:16-alpine
commands:
- cd web/
- yarn install --frozen-lockfile
2022-05-20 03:27:43 +00:00
# when:
# path: "web/**"
lint:
group: test
image: node:16-alpine
commands:
- cd web/
- yarn lint
2022-05-20 03:27:43 +00:00
# when:
# path: "web/**"
formatcheck:
group: test
image: node:16-alpine
commands:
- cd web/
- yarn formatcheck
2022-05-20 03:27:43 +00:00
# when:
# path: "web/**"
typecheck:
group: test
image: node:16-alpine
commands:
- cd web/
- yarn typecheck
2022-05-20 03:27:43 +00:00
# when:
# path: "web/**"
test:
group: test
image: node:16-alpine
commands:
- cd web/
- yarn test
2022-05-20 03:27:43 +00:00
# when:
# path: "web/**"