Skip to content

refactor: 방 생성, 방 관리의 폼 관리 리팩토링 #622

refactor: 방 생성, 방 관리의 폼 관리 리팩토링

refactor: 방 생성, 방 관리의 폼 관리 리팩토링 #622

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: ['main', 'dev']
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