Skip to content
This repository was archived by the owner on Jul 23, 2025. It is now read-only.

Commit 1291919

Browse files
authored
chore(utils): fix ci errors
1 parent dd5b7dd commit 1291919

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/utils.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { createHash, timingSafeEqual } from 'node:crypto';
22
import { createWriteStream, readFile } from 'node:fs';
3-
import { platform, arch as nodeArch } from 'node:os';
4-
import { platform as nodePlatform, release, config } from 'node:process';
3+
import { arch as nodeArch } from 'node:os';
4+
import { config, platform as nodePlatform, release } from 'node:process';
55
import { promisify } from 'node:util';
66
import { getInput } from '@actions/core';
77
import arch from 'arch';
@@ -292,6 +292,7 @@ export function getSupportedEnvironmentInfo() {
292292
nodeArchitecture: nodeArch,
293293
/** The CPU architecture of the host machine that compiled the current Node.js binary. */
294294
nodeHostArchitecture: config.variables.host_arch,
295+
/** Metadata related to the Node.js binary's release, including URLs for the source tarball and headers-only tarball. */
295296
nodeRelease: release,
296297
};
297298
}

0 commit comments

Comments
 (0)