Skip to content

Commit

Permalink
chore: storybook 배포를 위한 workflow 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
Todari committed Jul 26, 2024
1 parent a7b9387 commit fedccac
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 43 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/design-pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Storybook Deployment
run-name: ${{ github.actor }}의 스토리북 배포
on:
pull_request:
branches:
- develop
paths:
- 'HDesign/**'

jobs:
storybook:
runs-on: ubuntu-latest
outputs:
status: ${{ job.status }}

defaults:
run:
shell: bash
working-directory: ./HDesign

steps:
- name: checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0

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

- name: depedency install
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci

- name: run lint
run: npm lint

- name: publish to chromatic
id: chromatic
uses: chromaui/action@v1
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}

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

43 changes: 0 additions & 43 deletions .github/workflows/design-push.yml

This file was deleted.

0 comments on commit fedccac

Please sign in to comment.