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 6a0d7e0 commit d2a719eCopy full SHA for d2a719e
.github/actions/src/info/index.ts
@@ -36,7 +36,6 @@ async function findPackages(directory: string, maxDepth?: number) {
36
const fullPath = pathlib.join(currentDir, item.name);
37
if (item.isFile()) {
38
if (item.name === 'package.json') {
39
- core.info(`Found ${fullPath}`);
40
try {
41
const { default: { name } } = await import(fullPath, { with: { type: 'json' }});
42
const changes = await checkForChanges(currentDir);
@@ -46,7 +45,9 @@ async function findPackages(directory: string, maxDepth?: number) {
46
45
name
47
};
48
return;
49
- } catch {}
+ } catch(error) {
+ core.error(error);
50
+ }
51
}
52
continue;
53
0 commit comments