Skip to content

Feat(#520): 소셜 로그인 테스트 코드 추가 및 OAuth Controller 코드 리팩터링 완료 #537

Feat(#520): 소셜 로그인 테스트 코드 추가 및 OAuth Controller 코드 리팩터링 완료

Feat(#520): 소셜 로그인 테스트 코드 추가 및 OAuth Controller 코드 리팩터링 완료 #537

Workflow file for this run

name: Connection-CICD
on:
pull_request:
branches: ['develop']
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup node.js
uses: actions/[email protected]
with:
node-version: 18.x
cache: 'npm'
- name: Install Backend-Server
run: npm ci
- name: Compile Backend-Server
run: npm run build