Skip to content

fix: 타겟 브랜치명 변경 #4

fix: 타겟 브랜치명 변경

fix: 타겟 브랜치명 변경 #4

Workflow file for this run

name: "Deploy Storybook"
on:
pull_request:
branches: ['feat/v2', 'develop']
paths:
- '**.stories.tsx'
jobs:
chromatic:
runs-on: ubuntu-latest
steps:

Check failure on line 12 in .github/workflows/storybook.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/storybook.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: cache dependencies
id: cache
uses: actions/cache@v4
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: Publish to Chromatic
id: chromatic
uses: chromaui/action@latest
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
- name: comment PR
uses: thollander/actions-comment-pull-request@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
message: '🔗 배포된 storybook 주소: ${{ steps.chromatic.outputs.storybookUrl }}'