feat: postWellItem에 누적 책 2권 이상 등록 시 개구리 아이템 지급하는 로직 추가 #35
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: dev CI | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - dev | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code # 코드 체크아웃 단계 | |
| uses: actions/checkout@v2 | |
| - name: Set up Node.js # Node.js 설정 단계 | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: '18' # 사용할 Node.js 버전 설정 | |
| - name: Install dependencies # 종속성 설치 단계 | |
| run: npm install | |
| - name: Run lint # 코드 스타일 검사 단계 | |
| run: npm run lint | |
| continue-on-error: false # lint 실패 시 작업 중단 | |
| - name: Run tests # 테스트 실행 단계 | |
| run: npm test |