Skip to content

Commit c685a73

Browse files
authored
Run tests on pull requests to feature branches (#134)
* Run integration tests on pull requests to feature branches * Also run unit tests on push --------- Co-authored-by: Simon Beal <[email protected]>
1 parent 7a08545 commit c685a73

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci-integration-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Integration tests (Main)
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: [ "main", "feature/*" ]
66
merge_group:
77
types: [ "checks_requested" ]
88

.github/workflows/ci-integration-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Integration tests (PR)
22

33
on:
44
pull_request_target:
5-
branches: [ "main" ]
5+
branches: [ "main", "feature/*" ]
66

77
permissions:
88
id-token: write

.github/workflows/ci.yml

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

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: [ "main", "feature/*" ]
66
pull_request:
7-
branches: [ "main" ]
7+
branches: [ "main", "feature/*" ]
88
merge_group:
99
types: [ "checks_requested" ]
1010

0 commit comments

Comments
 (0)