Skip to content

fixed typo

fixed typo #6

Workflow file for this run

# name: CD
# on:
# push:
# tags:
# - v*
# jobs:
# publish:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: pnpm/action-setup@v4
# - uses: actions/setup-node@v3
# with:
# node-version: 20
# registry-url: 'https://registry.npmjs.org'
# cache: 'pnpm'
# cache-dependency-path: '**/pnpm-lock.yaml'
# - run: pnpm install --frozen-lockfile
# - run: npm test
# - run: npm run compile
# - run: npm publish
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}