pfarospa/iOS Size Reporter
Tracks iOS app download & install size on every PR — like bundlesize, but for iOS.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Activelast commit Jun 22, 2026
- License
- None
Pinned Snippet
uses: pfarospa/ios-size-reporter@9ccec252f9e5e1557773fcbd10830c0ffba93d1f # iOStags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| ipa-path | Path to the .ipa file to analyze | yes | — |
| token | GitHub token for posting PR comments | yes | ${{ github.token }} |
| size-limit | Fail if download size exceeds this value (e.g. '50 MB', '100 MB') | no | "" |
| comment-on-prs | Post a size report comment on pull requests | no | true |
| fail-on-increase | Fail the action if app size increased compared to baseline | no | false |
| baseline-branch | Branch to compare against for size diff | no | main |
Outputs
| name | description |
|---|---|
| download-size-bytes | Compressed IPA download size in bytes |
| install-size-bytes | Uncompressed install size in bytes |
| download-size-human | Human readable download size (e.g. '23.4 MB') |
| install-size-human | Human readable install size (e.g. '58.1 MB') |
| report-json | Full size report as JSON string |