fix(android): Fix key in progress updated event #198
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
# this validation workflow bypasses the standard platform-validation.yml | |
# if only documentation has been modified. | |
name: platform-validation | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'docs/**' | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'docs/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-android: | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' | |
build-ios: | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' | |
check-typescript: | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' |