Skip to content

docs: annotate public api #1

docs: annotate public api

docs: annotate public api #1

Workflow file for this run

name: ci
on:
push:
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: yarn
- name: Enable Yarn
run: |
corepack enable
corepack prepare yarn@1.22.22 --activate
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test
- name: Check types
run: yarn typecheck