diff --git a/Justfile b/Justfile index eadfabd..d4eb3a3 100644 --- a/Justfile +++ b/Justfile @@ -21,6 +21,14 @@ 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 i + 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 +41,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 \ No newline at end of file + podman system reset --force