Skip to content

Meme 조회 시 Keyword lookup, Keyword 삭제 시 Meme에서도 제거, Keyword 생성 시 body 유효성 검사 추가 #30

Meme 조회 시 Keyword lookup, Keyword 삭제 시 Meme에서도 제거, Keyword 생성 시 body 유효성 검사 추가

Meme 조회 시 Keyword lookup, Keyword 삭제 시 Meme에서도 제거, Keyword 생성 시 body 유효성 검사 추가 #30

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