[Fix/#335] 종료된 공연 예매 불가능 하도록 수정 및 로그인 여부에 따른 공연 등록 페이지 접근 로직 수정 #312
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: | |
- develop | |
jobs: | |
storybook: | |
runs-on: ubuntu-20.04 | |
outputs: | |
status: ${{ job.status }} | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: cache dependencies | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}-storybook | |
- name: dependency install | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: yarn install --no-immutable | |
- name: publish to chromatic | |
id: chromatic | |
uses: chromaui/action@v1 | |
with: | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: comment PR | |
if: github.event_name == 'pull_request' | |
uses: thollander/actions-comment-pull-request@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
message: "🚀storybook: ${{ steps.chromatic.outputs.storybookUrl }}" |