Add pull-request-test workflow

This commit is contained in:
Jonathan Clem
2020-06-04 13:57:15 -04:00
parent 89e3c40f24
commit 4789b35ac3
6 changed files with 1750 additions and 17498 deletions

View File

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