knowyt/.woodpecker.yml
Settel 918a2bc731
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
bugfix: repair .woodpecker.yml
2022-11-06 10:00:36 +01:00

16 lines
342 B
YAML

pipeline:
frontend:
image: node:16-alpine
commands:
- ( cd client && yarn install )
- ( cd client/ && yarn generate )
- mkdir -p client/.output/public/
backend:
image: golang:1.18-alpine
commands:
- apk add go-bindata
- apk add make
- make -C server setup
- make -C server build