diff options
author | Elizabeth Hunt <me@liz.coffee> | 2025-07-20 14:47:07 -0700 |
---|---|---|
committer | Elizabeth Hunt <me@liz.coffee> | 2025-07-20 14:47:07 -0700 |
commit | fb6b516abfc74ae2158d451c62dda4fc29038b22 (patch) | |
tree | 9d5f2869f33a39273403fe8ad14333398f68cd24 /model/pipeline/impl.ts | |
parent | e84bec6394e3873094d70ff826406edb5ce3edee (diff) | |
download | ci-fb6b516abfc74ae2158d451c62dda4fc29038b22.tar.gz ci-fb6b516abfc74ae2158d451c62dda4fc29038b22.zip |
Fix pipeline model
Diffstat (limited to 'model/pipeline/impl.ts')
-rw-r--r-- | model/pipeline/impl.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/model/pipeline/impl.ts b/model/pipeline/impl.ts index 406a05e..3ce3e08 100644 --- a/model/pipeline/impl.ts +++ b/model/pipeline/impl.ts @@ -5,7 +5,7 @@ export class PipelineImpl implements Pipeline { constructor(public readonly serialJobs: Array<PipelineStage>) {} public serialize() { - return JSON.stringify(this.serialJobs); + return JSON.stringify({ serialJobs: this.serialJobs }); } public static from(s: string): IEither<Error, Pipeline> { |