Skip to content

✅ Checking '#491/merge' on branch 'refactor/move-hover-tooltip-logic' #1264

✅ Checking '#491/merge' on branch 'refactor/move-hover-tooltip-logic'

✅ Checking '#491/merge' on branch 'refactor/move-hover-tooltip-logic' #1264

name: run-static-checks
run-name: ✅ Checking '${{'#'}}${{github.ref_name}}' on branch '${{github.head_ref}}'
on: pull_request
jobs:
static-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
- run: npm ci
- name: Run Linter
run: npm run lint
- name: Run Typechecker
# Run type check even if the previous linter step failed
if: success() || failure()
run: npm run typeCheck
- name: Run Tests
# Run test even if the previous step(s) failed
if: success() || failure()
run: npx vitest run --coverage
- name: Vitest Coverage Report
uses: davelosert/[email protected]