Skip to content

chore: 시각적 변경사항 자동승인하도록 yml 수정 #18

chore: 시각적 변경사항 자동승인하도록 yml 수정

chore: 시각적 변경사항 자동승인하도록 yml 수정 #18

Workflow file for this run

name: "Chromatic"
on: push
jobs:
chromatic:
name: Run Chromatic
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: cd frontend && yarn install --frozen-lockfile
- name: Run Chromatic
run: cd frontend && npx chromatic --project-token=${{ secrets.CHROMATIC_PROJECT_TOKEN }} --exit-zero-on-changes