bugfix: reorder frontend/backend pipelines
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Settel 2022-11-04 21:37:59 +01:00
parent b873ed7d43
commit ba9dd785ca

View File

@ -1,10 +1,10 @@
pipeline: pipeline:
backend:
image: golang
commands:
- make build-server
frontend: frontend:
image: node image: node
commands: commands:
- cd client && yarn install - cd client && yarn install
- cd client && yarn generate - cd client && yarn generate
backend:
image: golang
commands:
- make -C server build