Fix CI: split install steps so cwd resets between them
Some checks failed
PR Preview / teardown-preview (pull_request) Has been skipped
Test / unit-test (push) Successful in 4s
Test / build-check (push) Successful in 4s
PR Preview / test (pull_request) Successful in 4s
Test / e2e-test (push) Failing after 5s
PR Preview / deploy-preview (pull_request) Successful in 7s

This commit is contained in:
2026-04-06 22:19:48 +00:00
parent 56d0c9b469
commit c115c47e61

View File

@@ -15,10 +15,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install deps
run: |
cd frontend && npm ci
python3 -m venv /tmp/ci-venv && /tmp/ci-venv/bin/pip install -q -r backend/requirements.txt
- name: Install frontend deps
run: cd frontend && npm ci
- name: Install backend deps
run: python3 -m venv /tmp/ci-venv && /tmp/ci-venv/bin/pip install -q -r backend/requirements.txt
- name: E2E tests
run: |