bug fixes #6
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
| jobs: | |
| test: | |
| name: Run Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.1.4 # pin a known stable version | |
| - name: Bun info | |
| run: | | |
| bun --version | |
| bun env | |
| bun doctor | |
| - name: Install dependencies | |
| run: bun install --force | |
| - name: Type check | |
| run: bun run tsc --noEmit | |
| - name: Run tests | |
| run: bun test --ci --timeout 120000 |