We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54c3dda commit c826c6cCopy full SHA for c826c6c
.github/actions/lbox-matrix/index.js
@@ -26838,11 +26838,15 @@ try {
26838
}
26839
];
26840
const finalMatrix = [];
26841
- files.forEach(file => {
+ const packages = files.map(file => {
26842
+ return file.split('/')[1];
26843
+ });
26844
+ const uniquePackages = [... new Set(packages)];
26845
+ uniquePackages.forEach(package => {
26846
startingMatrix.forEach(matrixItem => {
26847
finalMatrix.push({
26848
...matrixItem,
- package: file.split('/')[1]
26849
+ package
26850
});
26851
26852
0 commit comments