Skip to content

Commit e46ff3e

Browse files
authored
build(ci): Make ember test runs more restrictive (#3906)
Only run ember tests if the ember package has been changed. Previously we would run ember tests if ember or any of it's dependencies changed (like hub, core, types etc.)
1 parent 69abb97 commit e46ff3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ jobs:
233233
id: changed-files-specific
234234
uses: tj-actions/[email protected]
235235
with:
236-
files: .*packages\/(ember|browser|core|tracing|hub|minimal|types|utils)($|/.*)
236+
files: .*packages\/ember($|/.*)
237237
# Only run ember tests if the files above have changed
238238
- name: Run Ember tests
239239
if: steps.changed-files-specific.outputs.any_changed == 'true' || github.event_name == 'push'

0 commit comments

Comments
 (0)