Skip to content

템플릿 목록 조회, 상세 조회, 생성 요청 로직 리펙토링 #7

템플릿 목록 조회, 상세 조회, 생성 요청 로직 리펙토링

템플릿 목록 조회, 상세 조회, 생성 요청 로직 리펙토링 #7

Workflow file for this run

name: Frontend CI
on:
pull_request:
branches:
- '**'
jobs:
build-with-test:
runs-on: ubuntu-latest
env:
frontend-directory: ./frontend
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Dependencies
run: npm install
working-directory: ${{ env.frontend-directory }}
- name: Run Tests
run: npm test
working-directory: ${{ env.frontend-directory }}