Skip to content

Develop - Header 추가, 밈 조회 관련 모든 응답에 isSaved 추가, 키워드 응답 형식 변경 #82

Develop - Header 추가, 밈 조회 관련 모든 응답에 isSaved 추가, 키워드 응답 형식 변경

Develop - Header 추가, 밈 조회 관련 모든 응답에 isSaved 추가, 키워드 응답 형식 변경 #82

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