adjustments

This commit is contained in:
einhornimmond 2025-06-28 17:09:27 +02:00
parent 00ec4c5a64
commit 59e79dd846
2 changed files with 9 additions and 7 deletions

View File

@ -135,7 +135,13 @@ jobs:
sudo cp ./nginx/e2e-test.conf /etc/nginx/sites-available/default
- name: Boot up test system | seed backend
run: bun turbo seed
run: |
cd frontend
cp .env.test_e2e .env
cd ../backend
cp .env.test_e2e .env
cd ..
bun turbo seed --env-mode=loose
- name: Moving logs after seeding
run: |
@ -144,11 +150,7 @@ jobs:
- name: Boot up test system | docker-compose backend, frontend
run: |
cd frontend
cp .env.test_e2e .env
cd ../backend
cp .env.test_e2e .env
cd ..
bun turbo backend#build frontend#build --env-mode=loose
bun turbo backend#start frontend#start --env-mode=loose &
- name: End-to-end tests | prepare

View File

@ -1 +1 @@
GRAPHQL_URI=http://localhost:4000/graphql
GRAPHQL_URI=http://127.0.0.1:4000/graphql