test(chore): investigate removing barrel files to see if import times during test transpilation improves #3535
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 Stats | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| bundle-stats: | |
| continue-on-error: true | |
| timeout-minutes: 30 | |
| runs-on: ubuntu-latest | |
| env: | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Setup Environment | |
| uses: ./.github/actions/setup | |
| with: | |
| node-version: 24 | |
| - uses: rexxars/bundle-stats@d3671d09a4973b4b2b09c4fe8b1c07c360683397 # v1.11.3 | |
| with: | |
| packages: packages/@sanity/cli, packages/@sanity/cli-core, packages/create-sanity | |
| build-command: pnpm build:cli | |
| only: '.' | |
| ignore: 'bin/**' |