Skip to content

feat: 전체 방 조회 API 연결 및 기능 구현 #237

feat: 전체 방 조회 API 연결 및 기능 구현

feat: 전체 방 조회 API 연결 및 기능 구현 #237

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