[#95] feat/예약내역페이지 페이지 구현 (#100) #1
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: 'Publish to Chromatic' | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| chromatic-deployment: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build Storybook | |
| run: npm run build-storybook | |
| - name: Publish to Chromatic | |
| run: npx chromatic --project-token=${{ secrets.CHROMATIC_PROJECT_TOKEN }} |