Skip to content

feat: 유저 생성, 조회 시 _id 필드 추가 #77

feat: 유저 생성, 조회 시 _id 필드 추가

feat: 유저 생성, 조회 시 _id 필드 추가 #77

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies
run: npm install
- name: Run linter
run: npm run lint
- name: Run tests
run: npm run test