Skip to content

Commit bc5302e

Browse files
committed
ci: run Build & Test on dev (push + PRs), not just main
Under the main=tags / dev=active model, build.yml only triggering on main meant PRs into dev got zero CI and bugs surfaced only at the dev->main release PR. Adding dev to the push/pull_request branch filters runs the same matrix (Node 22.x/24.x + bun unit tests) on every dev contribution.
1 parent 098e1fe commit bc5302e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Build & Test
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: [ "main", "dev" ]
66
pull_request:
7-
branches: [ "main" ]
7+
branches: [ "main", "dev" ]
88

99
jobs:
1010
build:

0 commit comments

Comments
 (0)