Skip to content

Commit dfc994b

Browse files
committed
GH workflow improvements
1 parent 213d185 commit dfc994b

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/split.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,11 @@ jobs:
127127
fi
128128
done
129129
130-
- name: Run all tests
131-
run: ./bin/run-all-tests.sh
130+
- name: Run tests in all packages
131+
run: |
132+
for dir in packages/*; do
133+
if [ -f "$dir/composer.json" ]; then
134+
echo "🔍 Running tests in $dir"
135+
composer --working-dir="$dir" test
136+
fi
137+
done

docs/release-notes/v0.17.3.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- (build) Run package tests separately for each package after a new version release

0 commit comments

Comments
 (0)