Separate integration workflow

This commit is contained in:
Jonathan Clem 2020-02-27 17:44:41 -05:00
parent 7afad1e364
commit d73e75dea8
No known key found for this signature in database
GPG key ID: B3662C4A8F843179
4 changed files with 19 additions and 16 deletions

View file

@ -18,7 +18,7 @@ async function main() {
const script = core.getInput('script', {required: true})
// Using property/value shorthand on `require` (e.g. `{require}`) causes compilatin errors.
const result = callAsyncFunction(
const result = await callAsyncFunction(
{require: require, github: github, context: context, core: core},
script
)