[Feat/#78] 알림 API 명세서에 있는 에러처리 완료 #62
Workflow file for this run
This file contains hidden or 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: CI - Pull Request | |
| on: | |
| pull_request: | |
| branches: | |
| - develop | |
| push: | |
| branches: | |
| - develop | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Node.js 설정 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'npm' | |
| - name: 의존성 설치 | |
| run: npm ci | |
| - name: Prisma Client 생성 | |
| run: npm run prisma:generate | |
| env: | |
| DATABASE_URL: "mysql://user:pass@localhost:3306/dummy" | |