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 cebfeb7 commit c2ca1b9Copy full SHA for c2ca1b9
.github/actions/src/info/index.ts
@@ -98,7 +98,7 @@ async function findPackages(directory: string, maxDepth?: number) {
98
if (item.isFile()) {
99
if (item.name === 'package.json') {
100
try {
101
- return await getPackageInfo(currentDir);
+ yield await getPackageInfo(currentDir);
102
} catch (error) {
103
if (!utils.types.isNativeError(error)) {
104
core.error(`Unknown error occurred ${error}`);
0 commit comments