Skip to content

Fix : 정렬 필터 부분 초기 텍스트 안보이는 것 수정 #11

Fix : 정렬 필터 부분 초기 텍스트 안보이는 것 수정

Fix : 정렬 필터 부분 초기 텍스트 안보이는 것 수정 #11

Workflow file for this run

name: Build # workflow 의 이름
on: push # workflow 의 실행 시점
jobs:
build: # job 의 이름
runs-on: ubuntu-latest # 실행할 OS 환경
steps: # job 의 세부 단계
# step1 : 코드 체크아웃
- name: Checkout code
uses: actions/checkout@v4
# step2 : Node.js 설치
- name: Install dependencies
run: npm install
# step3 : 빌드
- name: Build Next.js app
run: npm run build