headless-tests-ci-fix3
Some checks failed
Deploy on push / deploy (push) Failing after 33s

This commit is contained in:
2025-08-12 14:31:25 +03:00
parent 25c50f38cb
commit 31376b3dac
5 changed files with 43 additions and 24 deletions

View File

@@ -33,6 +33,23 @@ jobs:
uv sync --frozen
uv sync --group dev
- name: Install Node.js Dependencies
run: |
npm ci
- name: Build Frontend
run: |
npm run build
- name: Start Frontend Server
run: |
# Запускаем фронтенд сервер в фоне
npm run dev &
# Ждем запуска сервера
sleep 10
# Проверяем что сервер запустился
curl -f http://localhost:3000 || exit 1
- name: Setup Playwright (use pre-installed browsers)
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1