Skip to content

refactor: strict type checks #438

refactor: strict type checks

refactor: strict type checks #438

Workflow file for this run

name: ci
on:
push:
branches:
- main
- v1
pull_request:
branches:
- main
- v1
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: 20
cache: pnpm
- run: pnpm install
- run: pnpm lint
- run: pnpm test:types
- run: pnpm build
- run: pnpm vitest --coverage
- uses: codecov/codecov-action@v3