✅ Checking '#161/merge' on branch 'fix/sort-lists' #191
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 | |
| run-name: ✅ Checking '${{'#'}}${{github.ref_name}}' on branch '${{github.head_ref}}' | |
| on: pull_request | |
| jobs: | |
| static-tests: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install | |
| run: bun install | |
| - name: Run Linter | |
| run: bun run lint | |
| - name: Run Typechecker | |
| # Run type check even if the previous linter step failed | |
| if: success() || failure() | |
| run: bun run typeCheck | |
| - name: Run Tests | |
| # Run test even if the previous step(s) failed | |
| if: success() || failure() | |
| run: bun run test --coverage --run | |
| - name: Vitest Coverage Report | |
| uses: davelosert/[email protected] |