feat(example): Pendle demo real-tx readiness on Arbitrum Sepolia #71
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 | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| size: | |
| name: size-limit per package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| # size-limit-action diffs against the base branch, needs full history | |
| fetch-depth: 0 | |
| - uses: pnpm/action-setup@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - uses: andresz1/size-limit-action@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| package_manager: pnpm | |
| script: pnpm size | |
| # Pre-build via turbo so size-limit operates on built dist/. | |
| # `size-limit-action` builds twice (PR + base) so caching pnpm install | |
| # by the steps above is what saves time. | |
| build_script: 'turbo run build --filter "./packages/**"' | |
| skip_step: install |