better named tests and log local-docker params

pull/461/head
Frostebite 2022-09-21 04:06:12 +01:00
parent a16c0c7a48
commit 9234f81cfd
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -4717,7 +4717,7 @@ class TaskParameterSerializer {
.map((x) => { .map((x) => {
x.name = __1.Input.ToEnvVarFormat(x.name); x.name = __1.Input.ToEnvVarFormat(x.name);
x.value = `${x.value}`; x.value = `${x.value}`;
if (Number.parseInt(x.name) !== undefined) { if (Number(x.name) === Number.NaN) {
core.info(`[ERROR] found a number in task param serializer ${JSON.stringify(x)}`); core.info(`[ERROR] found a number in task param serializer ${JSON.stringify(x)}`);
} }
return x; return x;

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -36,7 +36,7 @@ export class TaskParameterSerializer {
x.name = Input.ToEnvVarFormat(x.name); x.name = Input.ToEnvVarFormat(x.name);
x.value = `${x.value}`; x.value = `${x.value}`;
if (Number.parseInt(x.name) !== undefined) { if (Number(x.name) === Number.NaN) {
core.info(`[ERROR] found a number in task param serializer ${JSON.stringify(x)}`); core.info(`[ERROR] found a number in task param serializer ${JSON.stringify(x)}`);
} }