Skip to content

[FEAT] 방 전체 멤버 조회 #19

[FEAT] 방 전체 멤버 조회

[FEAT] 방 전체 멤버 조회 #19

Workflow file for this run

name: Frontend CI
on:
pull_request:
branches:
- develop
paths:
- "frontend/**"
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- name: Install Dependencies
run: npm ci
working-directory: ./frontend
- name: Build
run: npm run build-dev
working-directory: ./frontend
- name: Test
run: npm test
working-directory: ./frontend