Skip to content

feat(Tooltip): add optional inline middleware configuration #54

feat(Tooltip): add optional inline middleware configuration

feat(Tooltip): add optional inline middleware configuration #54

Workflow file for this run

name: Publish Any Commit
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install PNPM
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: "pnpm"
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Test
run: pnpm run test
- name: Build Package
run: pnpm run build
- name: Publish
run: pnpm dlx pkg-pr-new publish --no-template --pnpm ./packages/react-ui
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}