test: Add fail to fetch latest due to 404

This commit is contained in:
peaceiris 2020-01-20 16:29:07 +00:00
parent 0311892edd
commit 3d13c5aa3b
2 changed files with 18 additions and 11 deletions

View file

@ -56,6 +56,6 @@ export async function run(): Promise<ActionResult> {
return result;
} catch (e) {
core.setFailed(`Action failed with error ${e}`);
return e;
throw e;
}
}