Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/size-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
- 'samples/react-native/**'
- '.github/workflows/size-analysis.yml'
pull_request:
types: [opened, synchronize, reopened, labeled]
paths:
- 'packages/**'
- 'samples/react-native/**'
Expand All @@ -26,7 +27,15 @@ env:
RN_SENTRY_POD_NAME: RNSentry

jobs:
Comment thread
sentry[bot] marked this conversation as resolved.
ready-to-merge-gate:
Comment thread
cursor[bot] marked this conversation as resolved.
name: Ready-to-merge gate
uses: ./.github/workflows/ready-to-merge-workflow.yml
with:
is-pr: ${{ github.event_name == 'pull_request' }}
labels: ${{ toJson(github.event.pull_request.labels) }}

android:
needs: [ready-to-merge-gate]
name: Android Size Analysis
runs-on: ubuntu-latest
timeout-minutes: 30
Expand Down Expand Up @@ -81,6 +90,7 @@ jobs:
--build-configuration "Release"

ios:
needs: [ready-to-merge-gate]
name: iOS Size Analysis
runs-on: ["ghcr.io/cirruslabs/macos-tahoe-xcode:26.2.0", "runner_group_id:10"]
timeout-minutes: 45
Expand Down
Loading