Skip to content

Publish

Publish #1

Workflow file for this run

name: Publish
on: workflow_dispatch
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
check-latest: true
architecture: x64
registry-url: 'https://registry.npmjs.org'
- run: pnpm install --frozen-lockfile
- run: pnpm -r lint
- run: pnpm -r build
# - run: pnpm -r publish
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}