diff --git a/status-checks/checks.ts b/status-checks/checks.ts index be76ccdf..8eb8fa71 100644 --- a/status-checks/checks.ts +++ b/status-checks/checks.ts @@ -1,6 +1,6 @@ import checkMain from "./check"; -module.exports = [ +export default [ { name: "Solidity check", callback: async () => { diff --git a/status-checks/index.ts b/status-checks/index.ts index e740debf..10db317a 100644 --- a/status-checks/index.ts +++ b/status-checks/index.ts @@ -1,7 +1,7 @@ import * as cp from "child_process"; import fetch from "node-fetch"; -import checkMain from "./check"; +import checks from "./checks"; const [owner, repo] = process.env.GITHUB_REPOSITORY.split("/");