Skip to content

fix: add sideEffects to main package.json to allow tree-shaking #256

fix: add sideEffects to main package.json to allow tree-shaking

fix: add sideEffects to main package.json to allow tree-shaking #256

Workflow file for this run

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