knowyt/.woodpecker.yml

13 lines
225 B
YAML
Raw Normal View History

2022-11-04 20:36:24 +00:00
pipeline:
frontend:
2022-11-04 20:40:40 +00:00
image: node:16-alpine
2022-11-04 20:36:24 +00:00
commands:
2022-11-04 20:43:51 +00:00
- cd client
- yarn install
- yarn generate
backend:
image: golang
commands:
2022-11-04 20:51:14 +00:00
- make -C server setup
- make -C server build