Skip to content

Commit

Permalink
📦 chore: github Action workflow add Chromatic
Browse files Browse the repository at this point in the history
  • Loading branch information
swgvenghy committed Jan 12, 2025
1 parent 4ac1f46 commit 432c275
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Chromatic CI

on:
pull_request:
branches:
- main
- develop
push:
branches:
- main
- develop

jobs:
test-and-deploy-storybook:
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v3

- name: Use Node
uses: actions/setup-node@v3
with:
node-version: 18

- name: Install dependencies
run: npm install

- name: Build Storybook
run: npx turbo run build-storybook --filter=storybook

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

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

0 comments on commit 432c275

Please sign in to comment.