From f10a87de4a86bdedb8a8a2c11611c693af8bfe78 Mon Sep 17 00:00:00 2001 From: Nikolay Bryskin Date: Sun, 12 Mar 2023 01:34:08 +0200 Subject: [PATCH] chore(ci): move init-polar to just before test --- .github/workflows/test-backend.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-backend.yaml b/.github/workflows/test-backend.yaml index c6f3c9d..d480572 100644 --- a/.github/workflows/test-backend.yaml +++ b/.github/workflows/test-backend.yaml @@ -75,8 +75,6 @@ jobs: with: compose-file: "polar/docker-compose.yml" down-flags: "--volumes" - - name: init-polar - run: scripts/init-polar.sh - name: Set up python id: setup-python uses: actions/setup-python@v4 @@ -108,6 +106,8 @@ jobs: run: | source .venv/bin/activate playwright install + - name: init-polar + run: scripts/init-polar.sh - name: Run tests # Set to false to regenerate caches regardless of test results if: true