chore(deps-dev): bump publint from 0.3.13 to 0.3.14 #70
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| # Honor package.json's packageManager ([email protected]); don't pin here. | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| run_install: false | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| cache: 'pnpm' | |
| - name: Install deps | |
| run: pnpm install --frozen-lockfile | |
| - name: Typecheck | |
| run: pnpm -w typecheck | |
| - name: Lint | |
| run: pnpm -w lint | |
| - name: Test | |
| run: pnpm -w test | |
| - name: Build packages | |
| run: pnpm -w build | |
| - name: Build docs (Ladle) | |
| run: pnpm -C apps/docs build | |
| - name: Size-limit (@unhq/ui) | |
| run: pnpm -C packages/ui size | |
| # Guard: ensure publish would succeed (never publishes in CI) | |
| - name: Publish dry run (no actual publish) | |
| if: github.event_name == 'push' | |
| run: pnpm -r --filter "@unhq/**" publish --dry-run --no-git-checks --access public --ignore-scripts | |
| - name: Size-limit (@unhq/blocks) | |
| run: pnpm -C packages/blocks size | |