Skip to content

[REFACTOR] 북마크 조회 페이지네이션 방식 변경 #7

[REFACTOR] 북마크 조회 페이지네이션 방식 변경

[REFACTOR] 북마크 조회 페이지네이션 방식 변경 #7

Workflow file for this run

name: CI
on:
pull_request:
branches: [develop]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm install
- name: Run Linter
run: npm run lint
- name: Run Tests
run: npm test