feat: Update SecureStore error handle #418
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: On Pull Request | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| merge_group: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| onPullRequestJob: | |
| env: | |
| ANDROID_HOME: ${{ github.workspace }}/bin/androidSdk | |
| name: Verify code base when pull request is published/updated | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout codebase | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| lfs: 'true' | |
| submodules: 'true' | |
| fetch-depth: 0 | |
| - name: Run deployment workflow | |
| uses: ./mobile-android-pipelines | |
| with: | |
| sonar_token: ${{ secrets.SONAR_TOKEN }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} |