Skip to content

feat: add a new Tooltip component and integrate it into the demo ta… #16

feat: add a new Tooltip component and integrate it into the demo ta…

feat: add a new Tooltip component and integrate it into the demo ta… #16

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type check
run: pnpm typecheck
- name: Test
run: pnpm test
- name: Build
run: pnpm build