Skip to content

fix: resolve ts type error in handling properties #6

fix: resolve ts type error in handling properties

fix: resolve ts type error in handling properties #6

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install deps
run: pnpm install
- name: Lint + typecheck + build + test
run: pnpm lint && pnpm check && pnpm build && pnpm test