Skip to content

fix: notification hub and user menu alignment #1629

fix: notification hub and user menu alignment

fix: notification hub and user menu alignment #1629

Workflow file for this run

name: 'Chromatic'
on: push
jobs:
chromatic-deployment:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0 # 👈 Required to retrieve git history
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: ^8.14.0
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Publish to Chromatic
uses: chromaui/action@v1
# TODO: remove it once we find out why storybook conflicts with new tailwindcss
continue-on-error: true
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
workingDir: './packages/ui'
exitZeroOnChanges: true
autoAcceptChanges: 'main'
skip: 'renovate/**'