Skip to content

✅ Checking '#162/merge' on branch 'feature/loading-overlay' #194

✅ Checking '#162/merge' on branch 'feature/loading-overlay'

✅ Checking '#162/merge' on branch 'feature/loading-overlay' #194

Workflow file for this run

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]