Refactor(#517): 누락된 searchAfter추가 및 any 속성 제거 완료 #539
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 |