Skip to content

Commit

Permalink
chore: Fixed conditionals in CI workflow (#2188)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsumners-nr authored and bizob2828 committed May 20, 2024
1 parent 90df86a commit f14dcb1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- skip_if_release
- should_run
if: needs.skip_if_release.outputs.should_skip != 'true'
&& needs.should_run.outputs.javascript_changed == 'true'
|| needs.should_run.outputs.javascript_changed == 'true'
runs-on: ubuntu-latest

strategy:
Expand All @@ -69,7 +69,7 @@ jobs:
- skip_if_release
- should_run
if: needs.skip_if_release.outputs.should_skip != 'true'
&& needs.should_run.outputs.javascript_changed == 'true'
|| needs.should_run.outputs.javascript_changed == 'true'
runs-on: ubuntu-latest

strategy:
Expand All @@ -93,7 +93,7 @@ jobs:
- skip_if_release
- should_run
if: needs.skip_if_release.outputs.should_skip != 'true'
&& needs.should_run.outputs.javascript_changed == 'true'
|| needs.should_run.outputs.javascript_changed == 'true'
runs-on: ubuntu-latest

strategy:
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
- skip_if_release
- should_run
if: needs.skip_if_release.outputs.should_skip != 'true'
&& needs.should_run.outputs.javascript_changed == 'true'
|| needs.should_run.outputs.javascript_changed == 'true'
runs-on: ubuntu-latest

env:
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
- skip_if_release
- should_run
if: needs.skip_if_release.outputs.should_skip != 'true'
&& needs.should_run.outputs.javascript_changed == 'true'
|| needs.should_run.outputs.javascript_changed == 'true'
runs-on: ${{ github.ref == 'refs/heads/main' && vars.NR_RUNNER || 'ubuntu-latest' }}

strategy:
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
- skip_if_release
- should_run
if: needs.skip_if_release.outputs.should_skip != 'true'
&& needs.should_run.outputs.javascript_changed == 'true'
|| needs.should_run.outputs.javascript_changed == 'true'
runs-on: ${{ github.ref == 'refs/heads/main' && vars.NR_RUNNER || 'ubuntu-latest' }}

strategy:
Expand Down

0 comments on commit f14dcb1

Please sign in to comment.