better named tests and log local-docker params
parent
a16c0c7a48
commit
9234f81cfd
|
|
@ -4717,7 +4717,7 @@ class TaskParameterSerializer {
|
|||
.map((x) => {
|
||||
x.name = __1.Input.ToEnvVarFormat(x.name);
|
||||
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)}`);
|
||||
}
|
||||
return x;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -36,7 +36,7 @@ export class TaskParameterSerializer {
|
|||
x.name = Input.ToEnvVarFormat(x.name);
|
||||
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)}`);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue