fix #35, add cancel query button #89
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: Bun CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| # Clean up node_modules and package-lock.json | |
| - run: rm -rf node_modules package-lock.json | |
| # Install dependencies with --no-optional to skip problematic optional dependencies | |
| - run: bun install --no-optional | |
| # Build the project | |
| - run: bun run build |