Skip to content

feat: Bottom Sheet 컴포넌트 추가 #42

feat: Bottom Sheet 컴포넌트 추가

feat: Bottom Sheet 컴포넌트 추가 #42

Workflow file for this run

name: 'Chromatic Deployment'
on:
pull_request:
branches: [main, develop]
paths:
- '**.stories.tsx'
push:
branches: [main, develop]
paths:
- '**.stories.tsx'
permissions:
pull-requests: write
jobs:
chromatic-deployment:
runs-on: ubuntu-latest
steps:
- name: actions/checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Clean Yarn Cache
run: yarn cache clean --all
- name: Install dependencies
run: yarn install --immutable --check-cache
- name: Publish to Chromatic
id: publish_chromatic
uses: chromaui/action@v1
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
buildScriptName: build-storybook
onlyChanged: true
- name: comment PR
uses: thollander/actions-comment-pull-request@v1
if: ${{ github.event_name == 'pull_request' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
message: '🚀 **storybook**: ${{ steps.publish_chromatic.outputs.storybookUrl }}'