diff --git a/.github/workflows/test-updates.yml b/.github/workflows/test-updates.yml index f98d96afa..ab3ea7533 100644 --- a/.github/workflows/test-updates.yml +++ b/.github/workflows/test-updates.yml @@ -82,11 +82,11 @@ jobs: MOCK_RATE_LIMIT: "false" MOCK_STALE_RELEASE: "false" run: | - docker-compose -f docker-compose.test.yml up -d + docker compose -f docker-compose.test.yml up -d sleep 15 # Wait for services to be ready npx playwright test tests/00-diagnostic.spec.ts --reporter=list,html UPDATE_API_BASE_URL=http://localhost:7655 go test ../../tests/integration/api -run TestUpdateFlowIntegration -count=1 - docker-compose -f docker-compose.test.yml down -v + docker compose -f docker-compose.test.yml down -v - name: Upload test results if: always() @@ -109,7 +109,7 @@ jobs: if: always() working-directory: tests/integration run: | - docker-compose -f docker-compose.test.yml down -v || true + docker compose -f docker-compose.test.yml down -v || true docker system prune -f || true - name: Comment PR with test results