Skip to content

fix(android): add TurboModule support for RNAppModule on RN 0.83+ #1063

fix(android): add TurboModule support for RNAppModule on RN 0.83+

fix(android): add TurboModule support for RNAppModule on RN 0.83+ #1063

Workflow file for this run

name: Testing
on:
pull_request:
branches:
- '**'
paths-ignore:
- 'docs/**'
- 'website/**'
- '.spellcheck.dict.txt'
- '**/*.md'
push:
branches:
- main
paths-ignore:
- 'docs/**'
- 'website/**'
- '.spellcheck.dict.txt'
- '**/*.md'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
jest:
name: Jest
timeout-minutes: 20
runs-on: ubuntu-latest
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 50
- uses: actions/setup-node@v6
with:
node-version: 24
- uses: actions/cache@v4
name: Yarn Cache
id: yarn-cache
with:
path: .yarn/cache
key: ${{ runner.os }}-yarn-${{ hashFiles('package.json', 'RNGoogleMobileAdsExample/package.json') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Yarn Install
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
retry_wait_seconds: 60
max_attempts: 3
command: yarn
- name: Jest
run: yarn tests:jest-coverage
- uses: codecov/codecov-action@v5
with:
verbose: true