From 1cb5d2fddfbed74e31b2045ab446b6374536fa6a Mon Sep 17 00:00:00 2001 From: resonic-user Date: Thu, 26 Jun 2025 13:39:21 +0200 Subject: [PATCH] wait no seed --- .github/workflows/cache-verify.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cache-verify.yml b/.github/workflows/cache-verify.yml index 69369c5ac..41a77be06 100644 --- a/.github/workflows/cache-verify.yml +++ b/.github/workflows/cache-verify.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-latest outputs: cache-key: ${{ steps.cache-key.outputs.key }} + steps: - name: Checkout repository uses: actions/checkout@v4 @@ -185,6 +186,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + #setup .env files, make cypress reports dir + - name: Setup .env files & reports dir + run: | + cp backend/.env.test_e2e backend/.env + cp webapp/.env.template webapp/.env + mkdir -p cypress/reports/json_logs #restore unified cache - name: Restore unified CI cache id: restore-cache @@ -201,12 +208,6 @@ jobs: /opt/cucumber-json-formatter restore-keys: | ci-unified-cache-${{ runner.os }}- - #setup .env files, make cypress reports dir - - name: Setup .env files & reports dir - run: | - cp backend/.env.test_e2e backend/.env - cp webapp/.env.template webapp/.env - mkdir -p cypress/reports/json_logs #setup cocumber path - name: Run formatter or use PATH tools run: | @@ -219,7 +220,6 @@ jobs: cd backend && yarn install --frozen-lockfile && cd .. cd webapp && yarn install --frozen-lockfile && cd .. npx cypress verify || echo "⚠️ Cypress not yet verified" - #build backend - name: Build backend run: cd backend && yarn build @@ -262,7 +262,6 @@ jobs: wait_for "mailserver" "http://localhost:1080" wait_for "minio" "http://localhost:9000/minio/health/live" echo "🎉 All services are up." - #temporary debug backend - name: Debug backend response run: |