fix: onStateChange
returns incorrect data in old arch on some rn versions
#115
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
name: PR | |
on: | |
workflow_dispatch: | |
pull_request_target: | |
jobs: | |
build-ios: | |
name: Build | |
uses: ./.github/workflows/build-ios.yml | |
build-android: | |
name: Build | |
uses: ./.github/workflows/build-android.yml | |
test-ios-e2e: | |
name: Test | |
uses: ./.github/workflows/test-ios-e2e.yml | |
needs: [build-ios] | |
secrets: inherit | |
test-android-e2e: | |
name: Test | |
uses: ./.github/workflows/test-android-e2e.yml | |
needs: [build-android] | |
secrets: inherit | |
test-js: | |
name: Test | |
uses: ./.github/workflows/test-js.yml | |
test-android-unit: | |
name: Test | |
uses: ./.github/workflows/test-android-unit.yml |