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: |