Skip to content

chore: update changelog to version v1.2.0 (#349) #753

chore: update changelog to version v1.2.0 (#349)

chore: update changelog to version v1.2.0 (#349) #753

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 bun
uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2
- name: Install dependencies
run: bun install
- name: Publish to Chromatic
uses: chromaui/action@latest
with:
# https://www.chromatic.com/docs/configure/#options
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
onlyChanged: true
exitOnceUploaded: true
autoAcceptChanges: main
ci: true