Skip to content

Textarea 컴포넌트 생성 #5

Textarea 컴포넌트 생성

Textarea 컴포넌트 생성 #5

Workflow file for this run

name: Storybook Deployment
permissions:
contents: read
pull-requests: write
on:
pull_request:
branches: [develop]
paths:
- "**.stories.tsx"
push:
branches: [develop]
paths:
- "**.stories.tsx"
jobs:
chromatic-deployment:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
run: yarn install --immutable --check-cache
- name: publish to chromatic
id: chromatic
uses: chromaui/action@v1
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
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.chromatic.outputs.storybookUrl }}"