Feat(#520): 소셜 로그인 테스트 코드 추가 및 OAuth Controller 코드 리팩터링 완료 #537
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: 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 |