Skip to content

feat: getBook 요청 실패 시 에러 반환이 아닌 DB 데이터 삽입 #34

feat: getBook 요청 실패 시 에러 반환이 아닌 DB 데이터 삽입

feat: getBook 요청 실패 시 에러 반환이 아닌 DB 데이터 삽입 #34

Workflow file for this run

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