knowyt/.woodpecker.yml
Settel 533bb922f2
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
feat: setup server
2022-11-04 21:51:14 +01:00

13 lines
225 B
YAML

pipeline:
frontend:
image: node:16-alpine
commands:
- cd client
- yarn install
- yarn generate
backend:
image: golang
commands:
- make -C server setup
- make -C server build