Skip to content

Commit 3425ae7

Browse files
committed
Check for empty string
1 parent f0003d7 commit 3425ae7

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

dist/index.js

+4-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,15 @@ async function run(): Promise<void> {
141141

142142
function getStringInputOrThrow(key: string): string {
143143
const input: unknown = core.getInput(key);
144-
if (input == null) {
144+
if (input == null || isEmptyString(input)) {
145145
throw new Error(`${key} is not defined.`);
146146
}
147147
if (typeof input !== "string") {
148148
throw new Error(`${key} is not a string.`);
149149
}
150150
return input;
151151
}
152+
153+
function isEmptyString(value: unknown): boolean {
154+
return typeof value === "string" && value.length === 0;
155+
}

0 commit comments

Comments
 (0)