clean up e2e github workflow

This commit is contained in:
mahula 2025-09-30 20:13:59 +02:00
parent 3e847b6a7a
commit 96975ed911

View File

@ -31,13 +31,6 @@ 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
@ -54,12 +47,6 @@ jobs:
cd backend && ./seed.sh
working-directory: ./
- name: Wait for Application to be Ready
run: |
echo "Waiting for application to be ready..."
timeout 300 bash -c 'until curl -f http://localhost:8080/login; do sleep 5; done'
echo "Application is ready!"
- name: Health Check
run: |
echo "Frontend health check:"