(value: unknown)
| 255 | } |
| 256 | |
| 257 | function isStringRecord(value: unknown): value is Record<string, string> { |
| 258 | if (!value || typeof value !== 'object' || Array.isArray(value)) { |
| 259 | return false; |
| 260 | } |
| 261 | return Object.values(value).every((entry) => typeof entry === 'string'); |
| 262 | } |
| 263 | |
| 264 | async function uploadDirectArtifact( |
| 265 | artifact: PreparedUploadArtifact, |
no test coverage detected