🔧 chore: 프로젝트 환경 설정 초기화

- CLAUDE.md 추가: Claude Code용 프로젝트 가이드 문서
- .gitignore 업데이트: Nuxt 프로젝트 표준 항목으로 개선
- .github/workflows/ci.yml 추가: lint + typecheck 자동화
- .mcp.json 추가: context7, playwright 등 MCP 서버 설정
This commit is contained in:
hyeonggil
2026-03-15 15:03:12 +09:00
parent b6c43bc2a3
commit 4270b5413a
4 changed files with 145 additions and 5 deletions

34
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,34 @@
name: ci
on: push
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [22]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install node
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm run lint
- name: Typecheck
run: pnpm run typecheck