From f87c8a916e4f2224c498ae01018cc8e5c6eb726e Mon Sep 17 00:00:00 2001
From: khai96_ <hvksmr1996@gmail.com>
Date: Mon, 5 Oct 2020 21:45:20 +0700
Subject: [PATCH] Fix TypeScript error

---
 src/inputs/run-install.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/inputs/run-install.ts b/src/inputs/run-install.ts
index 4e2c265..4f4e741 100644
--- a/src/inputs/run-install.ts
+++ b/src/inputs/run-install.ts
@@ -21,7 +21,7 @@ const options: InputOptions = {
 }
 
 export function parseRunInstall(name: string): RunInstall[] {
-  const result: RunInstallInput = safeLoad(getInput(name, options))
+  const result: RunInstallInput = safeLoad(getInput(name, options)) as any
   const ajv = new Ajv({
     allErrors: true,
     async: false,