Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

fix(layout): transition component memory leak #5

fix(layout): transition component memory leak

fix(layout): transition component memory leak #5

name: Publish Package
on:
push:
branches: [main]
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Use Node.js v18
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
shell: bash
run: pnpm --filter "./packages/*" build
- name: Publish 🚀
shell: bash
run: pnpm publish --filter ./packages/* --access public --no-git-checks --registry https://registry.npmjs.org --verbose
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}