Skip to content

Commit

Permalink
Fix conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
arminmeh committed Nov 19, 2024
1 parent 94a1f57 commit de110de
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -358,12 +358,12 @@ workflows:

additional-tests:
when:
all:
equal: [additional, << pipeline.parameters.workflow >>]
or:
equal: [true, << pipeline.parameters.with-material-ui-6 >>]
not:
equal: ['', << pipeline.parameters.with-react-version >>]
and:
- equal: [additional, << pipeline.parameters.workflow >>]
- or:
- equal: [true, << pipeline.parameters.with-material-ui-6 >>]
- not:
equal: ['', << pipeline.parameters.with-react-version >>]
jobs:
- test_unit:
<<: *default-context
Expand All @@ -384,7 +384,7 @@ workflows:

additional-checks:
when:
all:
and:
- equal: [additional, << pipeline.parameters.workflow >>]
- equal: [true, << pipeline.parameters.with-material-ui-6 >>]
jobs:
Expand Down

0 comments on commit de110de

Please sign in to comment.