[PIMOB-4287]: adding base url prefix to Frames SDK for multi-region #166
Workflow file for this run
This file contains hidden or 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
| name: Verify Frames | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| types: [ opened, synchronize, reopened ] | |
| branches: [ master, "bugfix/*", "feature/*", "release/*" ] | |
| paths: | |
| - 'checkout/**' | |
| - 'frames/**' | |
| - 'buildSrc/**' | |
| - 'build.gradle.kt' | |
| - '.github/workflows/ui-test.yml' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| verify-module: | |
| uses: ./.github/workflows/verification-flow.yml | |
| secrets: inherit | |
| with: | |
| module: frames | |
| run-ktlint: true | |
| run-ui-test: true |