From 5f39025188016c6076168de8651b0da37a53b68a Mon Sep 17 00:00:00 2001 From: Jonas Bovin Date: Tue, 22 Nov 2022 11:47:40 +0100 Subject: [PATCH] Added se --- src/async-function.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/async-function.ts b/src/async-function.ts index ba8e749..f363fc7 100644 --- a/src/async-function.ts +++ b/src/async-function.ts @@ -1,9 +1,10 @@ import * as core from '@actions/core' import * as exec from '@actions/exec' -import {Context} from '@actions/github/lib/context' -import {GitHub} from '@actions/github/lib/utils' +import { Context } from '@actions/github/lib/context' +import { GitHub } from '@actions/github/lib/utils' import * as glob from '@actions/glob' import * as io from '@actions/io' +import * as se from './se' const AsyncFunction = Object.getPrototypeOf(async () => null).constructor @@ -14,6 +15,7 @@ type AsyncFunctionArguments = { exec: typeof exec glob: typeof glob io: typeof io + se: typeof se require: NodeRequire __original_require__: NodeRequire }