Skip to content

docs: add comprehensive feature documentation and chore: cleanup #13

docs: add comprehensive feature documentation and chore: cleanup

docs: add comprehensive feature documentation and chore: cleanup #13

Workflow file for this run

name: Lerna Publish with PNPM
on:
push:
branches:
- main
paths:
- 'packages/**'
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build Packages
run: pnpm run build --filter "./packages/**"
- name: Publish with Lerna
run: npx lerna publish from-package --yes --no-verify-access -- --provenance
env:
NPM_CONFIG_PROVENANCE: true