fix(e2e): add frontend dependency installation step to E2E workflow

This commit is contained in:
GitHub Actions
2026-01-26 08:09:01 +00:00
parent bbdeedda5d
commit c5f412dd05
2 changed files with 69 additions and 0 deletions

View File

@@ -216,6 +216,12 @@ jobs:
- name: Install Playwright browsers
run: npx playwright install --with-deps ${{ matrix.browser }}
- name: Install Frontend Dependencies
run: |
echo "📦 Installing frontend dependencies..."
cd frontend
npm ci
- name: Start Vite dev server for coverage
run: |
echo "🚀 Starting Vite dev server for E2E coverage..."