Skip to content

Runtime tests nightly #7

Runtime tests nightly

Runtime tests nightly #7

name: Runtime tests nightly
on:
schedule:
# 03:53 UTC — offset from other nightly crons to spread runner load
- cron: '53 3 * * *'
pull_request:
paths:
- .github/workflows/runtime-tests-nightly.yml
workflow_dispatch:
permissions:
contents: read
jobs:
ios-argent:
if: github.repository == 'software-mansion/react-native-reanimated'
strategy:
fail-fast: false
matrix:
configuration: [DebugRuntimeTests, ReleaseRuntimeTests]
bundleMode: [false, true]
uses: ./.github/workflows/runtime-tests-ios-argent.yml
with:
configuration: ${{ matrix.configuration }}
bundleMode: ${{ matrix.bundleMode }}
secrets:
SIM_ROUTER_USERNAME: ${{ secrets.SIM_ROUTER_USERNAME }}
SIM_ROUTER_API_KEY: ${{ secrets.SIM_ROUTER_API_KEY }}
android:
if: github.repository == 'software-mansion/react-native-reanimated'
strategy:
fail-fast: false
matrix:
configuration: [DebugRuntimeTests, ReleaseRuntimeTests]
bundleMode: [false, true]
uses: ./.github/workflows/runtime-tests-android.yml
with:
configuration: ${{ matrix.configuration }}
bundleMode: ${{ matrix.bundleMode }}