Chore/#1 storybook 및 chromatic 배포 설정 #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'Deploy Chromatic' | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| branches: | |
| - main | |
| - develop | |
| - feat/** | |
| paths: | |
| - '**.stories.tsx' | |
| - '**.stories.ts' | |
| - '**.mdx' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| chromatic-deployment: | |
| runs-on: ubuntu-latest | |
| env: | |
| WORKDIR: . | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js and pnpm | |
| uses: ./.github/actions/pnpm-setup-node | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Publish Chromatic | |
| id: chromatic | |
| uses: chromaui/action@latest | |
| with: | |
| workingDir: apps/storybook | |
| projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Comment PR with Storybook URL | |
| uses: thollander/actions-comment-pull-request@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| message: '🚀storybook: ${{ steps.chromatic.outputs.storybookUrl }}' |