Skip to content

Commit

Permalink
test contain method
Browse files Browse the repository at this point in the history
  • Loading branch information
Can Demiralp committed Oct 22, 2024
1 parent 95c3c84 commit d09a476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
# Define variables for the test case
- run: echo "IS_RELEASE=${{ contains(github.event.pull_request.title, 'Release 9.') && true || false }}" >> $GITHUB_ENV
- run: echo "TEST_GROUP=${{ env.IS_RELEASE && 'all' || (inputs.testGroup || 'standard') }}" >> $GITHUB_ENV
- run: echo "TEST_BRANCH=${{ (env.IS_RELEASE || !inputs.testBranch) && 'main' || inputs.testBranch }}" >> $GITHUB_ENV
- run: echo "TEST_BRANCH=${{ (env.IS_RELEASE || inputs.testBranch == '') && 'main' || inputs.testBranch }}" >> $GITHUB_ENV
- run: echo "EXPRESS_BRANCH=${{ contains(fromJSON('["all", "express-checkout"]'), env.TEST_GROUP) && (inputs.expressBranch || 'main') || '' }}" >> $GITHUB_ENV

- name: Information
Expand Down

0 comments on commit d09a476

Please sign in to comment.