Better integration test target

This commit is contained in:
Imbus 2024-03-21 02:26:30 +01:00
parent ed88220a47
commit b484346031
3 changed files with 20 additions and 2 deletions

View file

@ -13,10 +13,13 @@ remove-podman-containers:
# Tests every part of the project
testall:
cd frontend && npm install
cd frontend && npm test
cd frontend && npm run lint
cd frontend && npm run build
cd backend && make test
cd backend && make lint
cd backend && make itest
# Cleans up everything related to the project
clean: remove-podman-containers