fix: reject function route returns #194
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: Run Tests with Bun | |
| on: | |
| push: | |
| branches: ["*"] | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: "latest" | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Run linter | |
| run: bun lint | |
| - name: Type Check Code | |
| run: bun run typecheck | |
| - name: Build Code | |
| run: bun run build | |
| - name: Run tests | |
| run: bunx ava --timeout=2m |