Skip to content

feat(ui): breadcrumb component #13

feat(ui): breadcrumb component

feat(ui): breadcrumb component #13

Workflow file for this run

name: "Chromatic"
on:
push:
branches:
- 'main'
pull_request:
types: [opened, reopened, synchronize]
jobs:
chromatic:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: copy .env file
run: cp .env.example .env
- name: Install dependencies
run: yarn install --immutable --immutable-cache --check-cache
- name: Publish to Chromatic
uses: chromaui/action@latest
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
onlyChanged: true
exitOnceUploaded: true
autoAcceptChanges: main
fromCI: true
# Skip running Chromatic on dependabot PRs
skip: dependabot/**