Skip to content

Commit

Permalink
fix(actions): if statements now use | instead of >
Browse files Browse the repository at this point in the history
  • Loading branch information
Xunnamius committed Nov 25, 2020
1 parent 4bb9d94 commit 24e3739
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
name: '[CI] test-integration-node'
runs-on: ubuntu-latest
needs: metadata
if: >
if: |
needs.metadata.outputs.should-skip-ci != 'true'
&& needs.metadata.outputs.has-integration-node == 'true'
strategy:
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
name: '[CI] test-integration-externals'
runs-on: ubuntu-latest
needs: metadata
if: >
if: |
needs.metadata.outputs.should-skip-ci != 'true'
&& needs.metadata.outputs.has-integration-externals == 'true'
strategy:
Expand Down Expand Up @@ -273,7 +273,7 @@ jobs:
name: '[CI] test-integration-browser'
runs-on: ubuntu-latest
needs: metadata
if: >
if: |
needs.metadata.outputs.should-skip-ci != 'true'
&& needs.metadata.outputs.has-integration-browser == 'true'
steps:
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:
name: '[CI] test-integration-webpack'
runs-on: ubuntu-latest
needs: metadata
if: >
if: |
needs.metadata.outputs.should-skip-ci != 'true'
&& needs.metadata.outputs.has-integration-webpack == 'true'
strategy:
Expand Down Expand Up @@ -347,7 +347,7 @@ jobs:
name: '[CD] build'
runs-on: ubuntu-latest
needs: metadata
if: >
if: |
# ? Skip this job when we're skipping CI
needs.metadata.outputs.should-skip-ci != 'true'
# ? Skip this job on PRs
Expand Down Expand Up @@ -414,7 +414,7 @@ jobs:
- test-integration-externals
- test-integration-browser
- test-integration-webpack
if: >
if: |
# ? This job always runs, except it...
always()
# ? Doesn't run if CD pipeline failed/was skipped
Expand Down

0 comments on commit 24e3739

Please sign in to comment.