Skip to content

fix: 인증 페이지 UI 추가 및 인증 상태 로직 수정 #584

fix: 인증 페이지 UI 추가 및 인증 상태 로직 수정

fix: 인증 페이지 UI 추가 및 인증 상태 로직 수정 #584

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: ['main']
jobs:
build-react:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- name: Build React
run: npm run build --if-present
build-storybook:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- name: Build Storybook
run: npm run build-storybook --if-present