Skip to content

Commit 0273093

Browse files
[ci] Enable CI tests for all feature branch PRs
- Update test-ui.yaml, vitest.yaml, eslint.yaml, and format.yaml workflows - Change from explicit branch allowlist to branches-ignore pattern - Exclude only wip/*, draft/*, and temp/* branches from CI - Ensures collaborators get test feedback on feature branches - All required checks for claude-pr-review will now run
1 parent 596c51d commit 0273093

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/eslint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: ESLint
22

33
on:
44
pull_request:
5-
branches: [ main, master, dev*, core/*, desktop/* ]
5+
branches-ignore: [ wip/*, draft/*, temp/* ]
66

77
jobs:
88
eslint:

.github/workflows/format.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Prettier Check
22

33
on:
44
pull_request:
5-
branches: [ main, master, dev*, core/*, desktop/* ]
5+
branches-ignore: [ wip/*, draft/*, temp/* ]
66

77
jobs:
88
prettier:

.github/workflows/test-ui.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [main, master, core/*, desktop/*]
66
pull_request:
7-
branches: [main, master, dev*, core/*, desktop/*]
7+
branches-ignore: [wip/*, draft/*, temp/*]
88

99
jobs:
1010
setup:

.github/workflows/vitest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [ main, master, dev*, core/*, desktop/* ]
66
pull_request:
7-
branches: [ main, master, dev*, core/*, desktop/* ]
7+
branches-ignore: [ wip/*, draft/*, temp/* ]
88

99
jobs:
1010
test:

0 commit comments

Comments
 (0)