test: Add fail to fetch latest due to 404 (#137)

This commit is contained in:
Shohei Ueda
2020-01-21 01:35:00 +09:00
committed by GitHub
parent 0311892edd
commit b55f1c81fb
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;
}
}