[design] Footer 컴포넌트 마크업 (#61) #35
This file contains hidden or 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
| name: 'Chromatic Deployment' | |
| on: | |
| push: | |
| branches: [develop] | |
| paths: | |
| - '**.stories.tsx' | |
| - '**.mdx' | |
| jobs: | |
| chromatic: | |
| name: 'Run Chromatic' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - run: yarn | |
| - uses: chromaui/action@latest | |
| with: | |
| projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
| buildScriptName: build-storybook | |
| onlyChanged: true | |
| - name: comment PR | |
| uses: thollander/actions-comment-pull-request@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.ACTIONS_TOKEN }} | |
| with: | |
| message: '🚀storybook: ${{ steps.chromatic.outputs.storybookUrl }}' |