[FE] feat: 로그인 쿠키 테스트 환경 구축 & 구글 로그인 기능 추가 #109
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: backEnd chat server CI | |
on: | |
pull_request: | |
branches: [BE/release, dev, main] | |
permissions: | |
contents: read | |
jobs: | |
chat-server: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ✅ 코드 체크아웃 | |
uses: actions/checkout@v3 | |
- name: 👻 노드 설정 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.16.0 | |
- name: ⬇️ 의존성 설치 | |
working-directory: ./backEnd/chat | |
run: npm ci | |
- name: 📦 프로젝트 빌드 | |
working-directory: ./backEnd/chat | |
run: npm run build |