knowyt/.woodpecker.yml

16 lines
298 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
2022-11-04 20:58:12 +00:00
when:
branch: none
backend:
2022-11-04 21:04:08 +00:00
image: golang:1.18-alpine
commands:
2022-11-04 21:05:43 +00:00
- apk add make go-bindata
2022-11-04 20:51:14 +00:00
- make -C server setup
- make -C server build