Skip to content

Commit

Permalink
chore: chromatic 배포 yml 파일 추가 (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinyoung234 authored Jul 29, 2024
1 parent 246056e commit 5b6067b
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: 'Chromatic'

on:
pull_request:
branches: [develop/fe]
paths:
- '**/*.stories.tsx'
- '**/*.stories.ts'
defaults:
run:
working-directory: frontend
jobs:
chromatic:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20.15.1'

- name: Cache dependencies
id: cache
uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}-storybook

- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile

- name: Publish to Chromatic
id: chromatic
uses: chromaui/action@latest
with:
workingDir: frontend
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}

- name: Comment PR
uses: thollander/actions-comment-pull-request@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
message: '🚀 Storybook: ${{ steps.chromatic.outputs.storybookUrl }}'

0 comments on commit 5b6067b

Please sign in to comment.