diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ec4037dce603..a7a37aaf2828 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,14 +13,14 @@ on: jobs: determine_tests: - uses: ./github/workflows/which-tests-to-run.yaml + uses: ./github/workflows/which-tests-to-run.yaml # ==== Query Service Jobs ==== build-container-query-service: name: Build Legacy (Query Service) test container timeout-minutes: 30 runs-on: [self-hosted, builder] - needs: check_paths + needs: determine_tests if: ${{ needs.determine_tests.outputs.should_run_query_tests == 'true' }} # runs-on: ubuntu-latest @@ -99,7 +99,7 @@ jobs: test-query-service-matrix-check: # This job does nothing and is only used for the branch protection needs: - test-query-service - - check_paths + - determine_tests if: ${{ needs.determine_tests.outputs.should_run_query_tests == 'true' }} runs-on: ubuntu-latest @@ -114,7 +114,7 @@ jobs: weavejs-lint-compile: name: WeaveJS Lint and Compile runs-on: ubuntu-latest - needs: check_paths + needs: determine_tests if: ${{ needs.determine_tests.outputs.should_run_query_tests == 'true' }} # runs-on: [self-hosted, gke-runner] steps: