Skip to content

Fix unsubscription on useData #3281

Fix unsubscription on useData

Fix unsubscription on useData #3281

Workflow file for this run

name: "Unit Tests"
on:
pull_request:
push:
branches:
- "main"
concurrency:
group:
${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: "22.x"
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Run type checking
run: pnpm run tsc
- name: Run tests
run: pnpm run vitest:ci