Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ name: CI Pipeline
# 워크플로우 실행 조건
on:
pull_request:
branches: ["main", "dev"]
branches: ["main", "develop"]

push:
branches: ["main", "dev", "feature/*"]
branches: ["main", "develop", "feature/*"]

# 실행될 작업(Job)들
jobs:
Expand All @@ -25,9 +25,6 @@ jobs:
# 1. pnpm 설치 (모노레포 필수)
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: false

# 2. Node.js 환경 설정
- name: Setup Node.js
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- main
- dev
- develop

jobs:
build:
Expand Down
3 changes: 2 additions & 1 deletion apps/editor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"build": "next build --turbopack",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint . --ext ts,tsx --fix"
"lint:fix": "eslint . --ext ts,tsx --fix",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@repo/ui": "workspace:*",
Expand Down
244 changes: 0 additions & 244 deletions apps/editor/src/app/test_click_to_edit/_click_to_edit_engine/mock.tsx

This file was deleted.

This file was deleted.

10 changes: 0 additions & 10 deletions apps/editor/src/app/test_click_to_edit/page.tsx

This file was deleted.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
"private": true,
"scripts": {
"dev": "turbo dev",
"build": "turbo build"
"build": "turbo build",
"type-check": "turbo run type-check"
},
"devDependencies": {
"turbo": "^2.6.1"
},
"packageManager": "pnpm@9.15.4"
}
}
3 changes: 3 additions & 0 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"exports": {
"./renderer": "./src/renderer/NodeRenderer.tsx"
},
"scripts": {
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"next": "15.5.6",
"react": "19.1.0"
Expand Down
6 changes: 5 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"tasks": {
"build": {
"outputs": [".next/**", "!.next/cache/**"]
},
"dev": {
"cache": false
},
"type-check": {
"dependsOn": ["^build"],
"cache": false
},

"lint": {},
"test": {}
Expand Down