160 feat 답장 편지 상세보기 페이지 레이아웃 개발 완료 (#163) #64
Workflow file for this run
This file contains 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
# Workflow name | |
name: 'Chromatic Deployment' | |
on: | |
pull_request: | |
branches: develope | |
paths: | |
- '**.stories.tsx' | |
push: | |
branches: develope | |
paths: | |
- '**.stories.tsx' | |
jobs: | |
chromatic-deployment: | |
runs-on: ubuntu-latest | |
steps: | |
- name: actions/checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- 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 | |
ignoreLastBuildOnBranch: 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 }}' |