knowyt/.woodpecker.yml
Settel 8f7ec91912
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
feat: install go-bindata
2022-11-04 22:04:08 +01:00

16 lines
293 B
YAML

pipeline:
frontend:
image: node:16-alpine
commands:
- cd client
- yarn install
- yarn generate
when:
branch: none
backend:
image: golang:1.18-alpine
commands:
- apk add go-bindata
- make -C server setup
- make -C server build