fix(ci): run db:migrate before tests so settings table exists

This commit is contained in:
aminovfariz
2026-06-05 14:38:52 +02:00
parent 68407b944e
commit 5367449d80
2 changed files with 6 additions and 0 deletions

View File

@@ -27,6 +27,9 @@ jobs:
run: |
docker compose exec -T php bash -c "cd /var/www && composer install --no-interaction --prefer-dist --optimize-autoloader"
- name: Run DB migrations
run: docker compose exec -T php php bin/console db:migrate
- name: Run required QA gates
run: bin/qa-required.sh

View File

@@ -29,5 +29,8 @@ jobs:
run: |
docker compose exec -T php bash -c "cd /var/www && composer install --no-interaction --prefer-dist --optimize-autoloader"
- name: Run DB migrations
run: docker compose exec -T php php bin/console db:migrate
- name: Run required QA gates
run: bin/qa-required.sh