chore(release): 0.13.0 #81
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: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run lint | |
| - run: npm run format:check | |
| - run: npm run test | |
| - run: npm run type-check | |
| - run: npm run build | |
| # Every package has a bundle-size budget (see each one's own "size-limit" config in | |
| # package.json) — this rebuilds each and gates the PR on staying under it, catching a | |
| # bundle-size regression before merge instead of relying on someone remembering to run | |
| # `npm run size` by hand. | |
| - run: npm run size -w packages/core | |
| - run: npm run size -w packages/react | |
| - run: npm run size -w packages/vue | |
| - run: npm run size -w packages/solid | |
| - run: npm run size -w packages/vanilla |