feat(installer): Change warning to info msg

This commit is contained in:
Evgenii Korolevskii 2022-09-22 18:25:25 +03:00
parent c2cd1482c6
commit 03c9ae1068

View file

@ -502,7 +502,7 @@ export function parseNodeVersionFile(contents: string): string {
nodeVersion = JSON.parse(contents).volta?.node;
if (!nodeVersion) nodeVersion = JSON.parse(contents).engines?.node;
} catch {
core.warning('Node version file is not JSON file');
core.info('Node version file is not JSON file');
}
if (!nodeVersion) {