knowyt/.woodpecker.yml
Settel aae6280954
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
bugfix: debug .woodpecker.yml
2022-11-05 22:03:26 +01:00

15 lines
320 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
commands:
- apk add go-bindata
- make -C server setup
- make -C server build