fix(component-library): round number field step values #1590
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: Publish Preview Release | |
| on: | |
| pull_request_review: | |
| types: [submitted] | |
| jobs: | |
| approved: | |
| if: github.event.review.state == 'APPROVED' | |
| 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 i --frozen-lockfile --prefer-offline | |
| - name: Build | |
| # meteor-docs is private (never published) and its Nuxt build OOMs the | |
| # runner — exclude it; only packages/* are published below. | |
| run: pnpm turbo run build --filter='!meteor-docs' | |
| - run: pnpx pkg-pr-new publish './packages/*' |