[785] Implement subscription group billing with member management #102
Workflow file for this run
This file contains hidden or 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: Bundle Size Analysis | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-node | |
| - name: Install web dependencies | |
| run: npm install react-dom@19.0.0 react-native-web@0.20.0 @expo/metro-runtime@5.0.5 --no-save --legacy-peer-deps | |
| - run: npx expo export --platform web --output-dir dist | |
| continue-on-error: true | |
| - name: Analyze bundle | |
| run: | | |
| npx size-limit || true | |
| echo "Bundle size analysis complete" |