Skip to content

๐Ÿ™ˆ chore: .gitignore์— .agent ์ถ”๊ฐ€ #79

๐Ÿ™ˆ chore: .gitignore์— .agent ์ถ”๊ฐ€

๐Ÿ™ˆ chore: .gitignore์— .agent ์ถ”๊ฐ€ #79

Workflow file for this run

# ์›Œํฌํ”Œ๋กœ์šฐ์˜ ์ด๋ฆ„
name: CI Pipeline
# ์›Œํฌํ”Œ๋กœ์šฐ ์‹คํ–‰ ์กฐ๊ฑด
on:
pull_request:
branches: ["main", "develop"]
push:
branches: ["feature/*"]
# ์‹คํ–‰๋  ์ž‘์—…(Job)๋“ค
jobs:
# ๋นŒ๋“œ ๋ฐ ํ…Œ์ŠคํŠธ๋ฅผ ๋‹ด๋‹นํ•˜๋Š” ๋ฉ”์ธ ์ž‘์—…
build:
# ๊ฐ€์ƒ ํ™˜๊ฒฝ ์ง€์ •
runs-on: ubuntu-latest
# ์ž‘์—… ๋‹จ๊ณ„(Step)๋“ค
steps:
# 0. ๋ ˆํฌ์ง€ํ† ๋ฆฌ ์ฝ”๋“œ ์ฒดํฌ์•„์›ƒ
- name: Checkout repository
uses: actions/checkout@v5
# 1. pnpm ์„ค์น˜ (๋ชจ๋…ธ๋ ˆํฌ ํ•„์ˆ˜)
- name: Install pnpm
uses: pnpm/action-setup@v4
# 2. Node.js ํ™˜๊ฒฝ ์„ค์ •
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "20"
cache: "pnpm"
# 4. ์˜์กด์„ฑ ์„ค์น˜ (2๋‹จ๊ณ„ Dependency Install)
# - CI ํ™˜๊ฒฝ์—์„œ๋Š” 'npm ci'๋ฅผ ์‚ฌ์šฉํ•˜๋Š” ๊ฒƒ์ด ๋” ๋น ๋ฅด๊ณ  ์•ˆ์ •์ .
- name: Install Dependencies
run: pnpm install --frozen-lockfile
# 5. ๋นŒ๋“œ ์œ ํšจ์„ฑ ๊ฒ€์‚ฌ (3๋‹จ๊ณ„ Build Validation)
- name: Run Build
run: pnpm turbo run build --filter=editor
# run: npm run build