Skip to content

[BE/#603] 채팅방 나갔다가 들어오면 이전 채팅 안보이게 구현 #163

[BE/#603] 채팅방 나갔다가 들어오면 이전 채팅 안보이게 구현

[BE/#603] 채팅방 나갔다가 들어오면 이전 채팅 안보이게 구현 #163

Workflow file for this run

name: Backend CI
on:
pull_request:
branches:
- BE
jobs:
build:
runs-on: ubuntu-20.04
steps:
# 해당 레포의 소스코드가 작업 환경에 복제된다 , checkout 의 2번째 버젼 사용
- name: Checkout repository
uses: actions/checkout@v2
# node.js 를 설치한다.
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 20.9.x
# npm install 실행
- name: Install dependencies
run: |
cd BE
npm install
# npm test 실행
- name: Build and test
run: |
cd BE
npm run build
npm test