knowyt/.woodpecker.yml
Settel 884304a33f
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: use alpine, install make
2022-11-04 22:05:43 +01:00

16 lines
298 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 make go-bindata
- make -C server setup
- make -C server build