// import type CoreApi from '@actions/core'; // import type {Context} from '@actions/github/lib/context'; import type {Octokit} from "@octokit/rest"; import {describe, it, vi} from "vitest"; const github = { rest: { issues: { createComment: vi.fn<(...args: Parameters) => ReturnType>(), }, pulls: { createReviewComment: vi.fn< ( ...args: Parameters ) => ReturnType >(), }, }, }; describe("Github Workflow: Report OTA PR", () => { it("passes", () => { console.log(github); }); });