Skip to content

Commit

Permalink
fix: TMP: Work around path filtering on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Feb 5, 2025
1 parent 674f581 commit 92c8eaa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@ jobs:
test-backend:
needs: path-filter
name: Run Backend Tests
if: ${{ needs.path-filter.outputs.python == 'true'}}
if: ${{ true || needs.path-filter.outputs.python == 'true'}}
uses: ./.github/workflows/python_test.yml
with:
python-versions: ${{ inputs.python-versions || '["3.10"]' }}

test-frontend:
needs: path-filter
name: Run Frontend Tests
if: ${{ needs.path-filter.outputs.frontend == 'true' || needs.path-filter.outputs.frontend-tests == 'true' || needs.path-filter.outputs.components-changes == 'true' || needs.path-filter.outputs.starter-projects-changes == 'true' }}
if: ${{ true || needs.path-filter.outputs.frontend == 'true' || needs.path-filter.outputs.frontend-tests == 'true' || needs.path-filter.outputs.components-changes == 'true' || needs.path-filter.outputs.starter-projects-changes == 'true' }}
uses: ./.github/workflows/typescript_test.yml
with:
tests_folder: ${{ inputs.frontend-tests-folder }}
Expand All @@ -136,13 +136,13 @@ jobs:

lint-backend:
needs: path-filter
if: ${{ needs.path-filter.outputs.python == 'true'}}
if: ${{ true || needs.path-filter.outputs.python == 'true'}}
name: Lint Backend
uses: ./.github/workflows/lint-py.yml

test-docs-build:
needs: path-filter
if: ${{ needs.path-filter.outputs.docs == 'true' }}
if: ${{ true || needs.path-filter.outputs.docs == 'true' }}
name: Test Docs Build
uses: ./.github/workflows/docs_test.yml

Expand Down

0 comments on commit 92c8eaa

Please sign in to comment.