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
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:
@@ -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: |
|
||||
|
||||
Reference in New Issue
Block a user