add database cleaning step to e2e test workflow

This commit is contained in:
mahula 2025-09-28 12:35:13 +02:00
parent 7da2a41430
commit 4b318478bc

View File

@ -31,6 +31,13 @@ jobs:
npm run build
working-directory: ./app
- name: Clean Database State
run: |
# Remove any existing database data to ensure fresh state
sudo rm -rf ./data/database
mkdir -p ./data/uploads
sudo chmod 777 -R ./data
- name: Build and start all Containers
run: docker compose up -d