Skip to content

Merge pull request #17 from Central-MakeUs/chore-16 #5

Merge pull request #17 from Central-MakeUs/chore-16

Merge pull request #17 from Central-MakeUs/chore-16 #5

Workflow file for this run

name: 'Chromatic'
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
chromatic:
name: Run Chromatic
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
env:
CHROMATIC_BRANCH: ${{ github.event.pull_request.head.ref || github.ref_name }}
CHROMATIC_SHA: ${{ github.event.pull_request.head.sha || github.ref }}
CHROMATIC_SLUG: ${{ github.repository }}
- name: pnpm-setup-node
uses: ./.github/actions/pnpm-setup-node
- name: Install dependencies
# ⚠️ See your package manager's documentation for the correct command to install dependencies in a CI environment.
run: pnpm install --frozen-lockfile
- name: Run Chromatic
id: chromatic
uses: chromaui/action@latest
with:
# ⚠️ Make sure to configure a `CHROMATIC_PROJECT_TOKEN` repository secret
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
onlyChanged: true
exitZeroOnChanges: true
- name: comment PR
if: github.event_name == 'pull_request'&& steps.chromatic.outputs.storybookUrl != ''
uses: thollander/actions-comment-pull-request@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
message: |
🚀 Storybook 리뷰가 준비되었습니다:
- 프리뷰: ${{ steps.chromatic.outputs.storybookUrl }}
- 빌드: ${{ steps.chromatic.outputs.buildUrl }}
comment-tag: chromatic