Updating example elements in README and tests; remove unused readUnti… #7
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: Build, test and typecheck | |
| on: push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.2 | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Test | |
| run: bun test --coverage | |
| - name: Typecheck | |
| run: bun typecheck |