From c115c47e612ffe63cc9b9aca8f13a8a5c9d066f9 Mon Sep 17 00:00:00 2001 From: Hera Zhao Date: Mon, 6 Apr 2026 22:19:48 +0000 Subject: [PATCH] Fix CI: split install steps so cwd resets between them --- .gitea/workflows/test.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 138af50..ca27bdf 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -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: |