Skip to content

update readme

update readme #31

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
- run: npm install -g pnpm
- run: pnpm install
- run: pnpm check
- run: pnpm build
- run: |
cd example
pnpm install
pnpm link ..
pnpm build