Update github actions e2e tests

This commit is contained in:
xbgmsharp
2023-08-18 00:56:58 +02:00
parent 4b6eeefdba
commit 3b798c99c4
2 changed files with 13 additions and 2 deletions

View File

@@ -43,9 +43,15 @@ jobs:
docker-compose up -d db && sleep 15 && docker-compose up -d api && sleep 5
docker-compose ps -a
echo "Test PostgSail Web Unit Test"
docker-compose up -d web && sleep 5
docker-compose up -d web_dev && sleep 60
docker-compose ps -a
curl http://localhost:8080/
docker-compose -f docker-compose.dev.yml -f docker-compose.yml up --exit-code-from web_tests
if [ $? != 0 ];
then
echo "Error running frontend-tests"
exit 1
fi
- name: Show the logs
if: always()
run: |