Add the @actions/glob package

This commit is contained in:
Matisse Hack
2021-03-29 15:59:59 -07:00
parent 8685086334
commit 8920b9a6ed
11 changed files with 11494 additions and 9 deletions

View File

@@ -1,6 +1,7 @@
import * as core from '@actions/core'
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'
const AsyncFunction = Object.getPrototypeOf(async () => null).constructor
@@ -9,6 +10,7 @@ type AsyncFunctionArguments = {
context: Context
core: typeof core
github: InstanceType<typeof GitHub>
glob: typeof glob
io: typeof io
require: NodeRequire
}