Skip to content

Update README.md

Update README.md #39

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
# - "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: "pnpm"
- run: pnpm install --frozen-lockfile
# - run: pnpm run lint && pnpm run test:ci && pnpm run build
- run: pnpm run test && pnpm run build