chore(release): v1.63.0 semantic UI evidence packets #1933
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: Performance checks | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| perf: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Run perf smoke checks | |
| run: bun run test:perf | |
| - name: Perf summary | |
| run: | | |
| { | |
| echo "## Perf smoke checks" | |
| echo "" | |
| echo "- Command: \`bun run test:perf\`" | |
| echo "- Baselines: \`PERF_BASELINES.md\`" | |
| echo "- Result: pass" | |
| } >> "$GITHUB_STEP_SUMMARY" |