From d3abfb5b3937e41b638ee4bb34e8fe655d5473a8 Mon Sep 17 00:00:00 2001 From: Yuqi Tang Date: Fri, 22 Aug 2025 13:41:36 -0700 Subject: [PATCH] fix: change template test to run every time (#9489) change template test to run every time --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07f81087c..60cfa0c46 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -208,7 +208,7 @@ jobs: test-templates: needs: [path-filter, set-ci-condition] name: Test Starter Templates - if: ${{ needs.path-filter.outputs.starter-projects == 'true' && needs.set-ci-condition.outputs.should-run-tests == 'true' }} + if: ${{ (needs.path-filter.outputs.python == 'true' || needs.path-filter.outputs.frontend == 'true') && needs.set-ci-condition.outputs.should-run-tests == 'true' }} runs-on: ubuntu-latest steps: - name: Checkout code