♻️ 모달페이지를 모달창으로 구현 및 UIUX 개선 #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build test | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 코드 체크아웃중... | |
uses: actions/checkout@v4 | |
- name: 노드 버전 설정중... | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "23" | |
- name: pnpm 설치중.. | |
run: npm install -g pnpm | |
- name: 종속성 설치중... | |
run: pnpm install | |
- name: 빌드 중.. | |
run: pnpm build |