Feat(client): 타임테이블 플로팅 컴포넌트 제작 #147
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 | |
env: | |
HUSKY: 0 | |
on: | |
pull_request: | |
branches: | |
- develop | |
- main | |
push: | |
branches: | |
- develop | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# 1. 레포지토리 체크아웃 | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# 2. Pnpm 설정 | |
- name: Setup Pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.12.0 | |
run_install: false | |
# 3. Node.js 환경 설정 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'pnpm' | |
cache-dependency-path: 'pnpm-lock.yaml' | |
# 4. 의존성 설치 | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
# 5. 빌드 실행 | |
- name: Build project | |
run: | | |
cd apps/client | |
pnpm build |