Release by 26.06.2024 #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run cypress tests in release branch without conditions for all packages | |
name: Cypress component testing on release branch | |
on: | |
pull_request: | |
branches: | |
- master | |
concurrency: | |
# New commit on branch cancels running workflows of the same branch | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
cypress: | |
if: ${{ startsWith(github.head_ref, 'release') }} | |
strategy: | |
fail-fast: false | |
matrix: | |
scope: [web,b2c,ui] | |
uses: ./.github/workflows/cypress-common.yml | |
with: | |
scope: ${{ matrix.scope }} | |
with-artifacts: true | |
secrets: inherit | |
cypress-react-17: | |
if: ${{ startsWith(github.head_ref, 'release') }} | |
strategy: | |
fail-fast: false | |
matrix: | |
scope: [web,b2c,ui] | |
uses: ./.github/workflows/cypress-common.yml | |
with: | |
scope: ${{ matrix.scope }} | |
with-react-17: true | |
with-artifacts: true | |
secrets: inherit |