From 7a5b6f775de5de73a7608da43a7d786e0d8a0e3c Mon Sep 17 00:00:00 2001 From: mahula Date: Sun, 8 Jun 2025 20:20:22 +0200 Subject: [PATCH] refactor: remove redundant cache restore and env cpy in backend testing workflow --- .github/workflows/test-backend.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/test-backend.yml b/.github/workflows/test-backend.yml index 4b03dfe86..6641f6f05 100644 --- a/.github/workflows/test-backend.yml +++ b/.github/workflows/test-backend.yml @@ -44,29 +44,9 @@ jobs: - name: Checkout code uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.1.7 - - name: Restore Neo4J cache - uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.0.2 - with: - path: /tmp/neo4j.tar - key: ${{ github.run_id }}-backend-neo4j-cache - fail-on-cache-miss: true - - - name: Restore Backend cache - uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.0.2 - with: - path: /tmp/backend.tar - key: ${{ github.run_id }}-backend-cache - fail-on-cache-miss: true - - - name: Load Docker Images - run: | - docker load < /tmp/neo4j.tar - docker load < /tmp/backend.tar - - name: backend | copy env files run: | cp webapp/.env.template webapp/.env - cp frontend/.env.dist frontend/.env cp backend/.env.template backend/.env - name: backend | docker compose