Skip to content
Merged
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
9 changes: 8 additions & 1 deletion .github/workflows/frontend-ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
name: Frontend-CI

on:
# 배포 게이트: main으로 가는 PR에서만 CI 실행
pull_request:
branches: [main, develop]
branches: [main]
types: [opened, reopened, synchronize, ready_for_review]

# 빠른 피드백: 기능/작업 브랜치에 push될 때 CI 실행
push:
branches:
- "Feature/*"
Expand All @@ -12,6 +16,9 @@ on:
- "Test/*"
- "Refactor/*"

# (선택) Actions 탭에서 수동 실행 버튼
workflow_dispatch: {}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand Down