Skip to content

Commit cb226a1

Browse files
committed
ci: log node installation
1 parent 7c1ace7 commit cb226a1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/utils/tsx.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ export async function createNode(
3434
nodeVersion: string,
3535
fixturePath: string,
3636
) {
37-
const node = await getNode(nodeVersion);
37+
console.log('Getting node', nodeVersion);
38+
const startTime = Date.now();
39+
const node = await getNode(nodeVersion, {
40+
progress: true,
41+
});
42+
console.log('Got node', Date.now() - startTime, node);
3843

3944
return {
4045
version: node.version,

0 commit comments

Comments
 (0)