Compare commits

..

2 commits

Author SHA1 Message Date
Imbus
9e790696a5 Remove npm i from justfile testall target 2024-03-02 04:47:12 +01:00
Imbus
59ab430b06 Justfile target for a complete test run 2024-03-02 04:41:34 +01:00

View file

@ -21,6 +21,13 @@ save-release: build-container-release
load-release file:
podman load --input {{file}}
# Tests every part of the project
testall:
cd backend && make test
cd backend && make lint
cd frontend && npm test
cd frontend && npm run lint
# Cleans up everything related to the project
clean: remove-podman-containers
podman image rm -f ttime-server
@ -33,4 +40,4 @@ clean: remove-podman-containers
# Cleans up everything related to podman, not just the project. Make sure you understand what this means.
[confirm]
podman-clean:
podman system reset --force
podman system reset --force