Skip to content

Commit

Permalink
ci: log node installation
Browse files Browse the repository at this point in the history
  • Loading branch information
privatenumber committed Sep 21, 2023
1 parent 7c1ace7 commit cb226a1
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/utils/tsx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@ export async function createNode(
nodeVersion: string,
fixturePath: string,
) {
const node = await getNode(nodeVersion);
console.log('Getting node', nodeVersion);
const startTime = Date.now();
const node = await getNode(nodeVersion, {
progress: true,
});
console.log('Got node', Date.now() - startTime, node);

return {
version: node.version,
Expand Down

0 comments on commit cb226a1

Please sign in to comment.