perf(optimize-imports): hoist regexes #270
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
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: oven-sh/setup-bun@v2 | |
| - name: Install dependencies | |
| run: bun ci | |
| - name: Lint and format | |
| run: bunx biome ci --error-on-warnings | |
| - name: Run unit tests | |
| run: bun run test | |
| - name: Run e2e tests | |
| run: bun run test:e2e |