Skip to content

Commit

Permalink
Conditional check adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
BobaFetters committed Nov 8, 2023
1 parent 663d039 commit 5aa6670
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
tuist-generation:
runs-on: macos-13
needs: [changes]
if: ${{ needs.changes.outputs.ios || needs.changes.outputs.codegen || needs.changes.outputs.pagination }}
if: ${{ needs.changes.outputs.ios == 'true' || needs.changes.outputs.codegen == 'true' || needs.changes.outputs.pagination == 'true' }}
timeout-minutes: 8
name: Run Tuist Generation
steps:
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
run-codegen-test-configurations:
runs-on: macos-13
needs: [changes]
if: ${{ needs.changes.outputs.codegen }}
if: ${{ needs.changes.outputs.codegen == 'true' }}
timeout-minutes: 20
name: Codegen Test Configurations - macOS
steps:
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
run-integration-tests:
runs-on: macos-13
needs: [tuist-generation, changes]
if: ${{ needs.changes.outputs.ios }}
if: ${{ needs.changes.outputs.ios == 'true' }}
timeout-minutes: 20
name: Apollo Integration Tests - macOS
steps:
Expand Down

0 comments on commit 5aa6670

Please sign in to comment.