Skip to content

fix(resizable): fix "Panel constraints not found" error on initial re… #14

fix(resizable): fix "Panel constraints not found" error on initial re…

fix(resizable): fix "Panel constraints not found" error on initial re… #14

Workflow file for this run

name: Publish @neynar/ui
on:
push:
branches:
- main
paths:
- package.json
workflow_dispatch:
permissions:
contents: read
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
registry-url: "https://registry.npmjs.org"
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable
- name: Build package
run: yarn build
- name: Publish to npm
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}