Skip to content

Commit 02c8d51

Browse files
authored
chore(CI): Update CI configuration for packages and legacy packages (#2659)
1 parent 47f7b4d commit 02c8d51

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@ name: CI
33
on:
44
push:
55
branches: ["main"]
6-
paths: ["packages/**"]
6+
paths:
7+
- "packages/**"
8+
- "package.json"
79
pull_request:
810
types: [opened, synchronize]
9-
paths: ["packages/**"]
11+
paths:
12+
- "packages/**"
13+
- "package.json"
1014
# trigger on merge group as well (merge queue)
1115
merge_group:
1216
types: [checks_requested]

.github/workflows/CI_legacy.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,16 @@ name: CI (Legacy Packages)
33
on:
44
push:
55
branches: ["main"]
6-
paths: ["legacy_packages/**", "legacy_e2e/**"]
6+
paths:
7+
- "legacy_packages/**"
8+
- "legacy_e2e/**"
9+
- "package.json"
710
pull_request:
811
types: [opened, synchronize]
9-
paths: ["legacy_packages/**", "legacy_e2e/**"]
12+
paths:
13+
- "legacy_packages/**"
14+
- "legacy_e2e/**"
15+
- "package.json"
1016
# trigger on merge group as well (merge queue)
1117
merge_group:
1218
types: [checks_requested]

0 commit comments

Comments
 (0)