feat: separate pipeline steps for frontend and backend
This commit is contained in:
parent
34ef10c6e6
commit
bb9cd154fb
@ -1,5 +1,4 @@
|
|||||||
pipeline:
|
pipeline:
|
||||||
|
|
||||||
frontend:
|
frontend:
|
||||||
image: node:16-alpine
|
image: node:16-alpine
|
||||||
commands:
|
commands:
|
||||||
|
6
Makefile
6
Makefile
@ -7,9 +7,7 @@ info:
|
|||||||
@echo available targets:
|
@echo available targets:
|
||||||
@perl -ne 'm/^([\w\-]+):/ && print(" $$1\n");' Makefile
|
@perl -ne 'm/^([\w\-]+):/ && print(" $$1\n");' Makefile
|
||||||
|
|
||||||
setup: check-tools setup-code
|
setup
|
||||||
|
|
||||||
check-tools:
|
|
||||||
@echo "I checking for tools"
|
@echo "I checking for tools"
|
||||||
@for binary in go tmux node yarn npx podman; do \
|
@for binary in go tmux node yarn npx podman; do \
|
||||||
echo -n " $$binary: " ; \
|
echo -n " $$binary: " ; \
|
||||||
@ -18,8 +16,6 @@ check-tools:
|
|||||||
exit 1 ;\
|
exit 1 ;\
|
||||||
fi ;\
|
fi ;\
|
||||||
done
|
done
|
||||||
|
|
||||||
setup-code:
|
|
||||||
@echo "I installing client dependencies"
|
@echo "I installing client dependencies"
|
||||||
( cd client && yarn install )
|
( cd client && yarn install )
|
||||||
@echo "I installing server dependencies"
|
@echo "I installing server dependencies"
|
||||||
|
Loading…
Reference in New Issue
Block a user