Skip to content

Commit 28c0689

Browse files
wip
1 parent 2e49e89 commit 28c0689

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/utils/artifact-manager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import * as path from "node:path";
44
import { DefaultArtifactClient } from "@actions/artifact";
55
import * as core from "@actions/core";
66
import { getOctokit } from "@actions/github";
7-
import * as AdmZip from "adm-zip";
7+
import AdmZip from "adm-zip";
88
import type { AggregatedTestResults } from "../types/test-results.js";
99

1010
/**
@@ -57,7 +57,7 @@ export class ArtifactManager {
5757
const resultsFile = path.join(tmpDir, "test-results.json");
5858

5959
// Write results to file (without the comparison field to avoid circular data)
60-
const { comparison, ...resultsToSave } = results;
60+
const { comparison: _comparison, ...resultsToSave } = results;
6161
fs.writeFileSync(resultsFile, JSON.stringify(resultsToSave, null, 2));
6262

6363
// Upload the artifact

0 commit comments

Comments
 (0)