From a7b62162f4bdffaffb19955ca72b4e0cf563b700 Mon Sep 17 00:00:00 2001 From: y-minion Date: Tue, 25 Nov 2025 18:17:39 +0900 Subject: [PATCH 1/2] =?UTF-8?q?CI/CD=20=ED=8A=B8=EA=B8=B0=EB=9F=AC=20?= =?UTF-8?q?=EB=B8=8C=EB=9E=9C=EC=B9=98=20=EC=9D=B4=EB=A6=84=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 4 ++-- .github/workflows/deploy.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 41010e6..9481f4b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d643ea3..60d4c38 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,7 +4,7 @@ on: push: branches: - main - - dev + - develop jobs: build: From bf701ba61ff8d5045a949aee2258a5995b79aebc Mon Sep 17 00:00:00 2001 From: y-minion Date: Tue, 25 Nov 2025 18:27:45 +0900 Subject: [PATCH 2/2] =?UTF-8?q?pnpm=20=EB=B2=84=EC=A0=84=20=EC=A4=91?= =?UTF-8?q?=EB=B3=B5=20=EB=AC=B8=EC=A0=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9481f4b..8435939 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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