knowyt/.woodpecker.yml

13 lines
230 B
YAML
Raw Normal View History

2022-11-04 20:36:24 +00:00
pipeline:
frontend:
2022-11-04 20:40:40 +00:00
image: node:16-alpine
2022-11-04 20:36:24 +00:00
commands:
2022-11-04 20:42:48 +00:00
- pwd
- ls -l
2022-11-04 20:36:24 +00:00
- cd client && yarn install
- cd client && yarn generate
backend:
image: golang
commands:
- make -C server build