Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
jtbandes committed Aug 1, 2024
1 parent ef85038 commit a6d66a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions validate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import JSZip from "jszip";
import registryJson from "./extensions.json";
import crypto from "node:crypto";
import path from "node:path";
import core from "@actions/core";
import * as core from "@actions/core";

function warning(message: string) {
core.warning(message, { file: "extensions.json" });
Expand Down Expand Up @@ -40,7 +40,7 @@ async function validateMarkdownUrl(url: string, id: string, name: string) {
}

async function validateExtension(extension: (typeof registryJson)[number]) {
console.log(`Validating ${extension.id}...`);
console.log(`\nValidating ${extension.id}...`);
const foxeResponse = await fetch(extension.foxe);
if (foxeResponse.status !== 200) {
error(
Expand Down

0 comments on commit a6d66a7

Please sign in to comment.