fix(component-library): round number field step values #1016
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: "size" | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| size-limit: | |
| name: Size Limit | |
| runs-on: ubuntu-latest | |
| env: | |
| TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
| TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: "24" | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile --prefer-offline | |
| - name: Build packages | |
| # Only the component library (and its workspace deps) are needed for the | |
| # size check. Building everything also builds meteor-docs, whose Nuxt | |
| # build OOMs the runner — and it's irrelevant to bundle size. | |
| run: pnpm turbo run build --filter=@shopware-ag/meteor-component-library | |
| - name: Run size limit | |
| run: pnpm --filter @shopware-ag/meteor-component-library run size |