We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 213d185 commit dfc994bCopy full SHA for dfc994b
.github/workflows/split.yml
@@ -127,5 +127,11 @@ jobs:
127
fi
128
done
129
130
- - name: Run all tests
131
- run: ./bin/run-all-tests.sh
+ - name: Run tests in all packages
+ 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
@@ -0,0 +1 @@
1
+ - (build) Run package tests separately for each package after a new version release
0 commit comments