@catladder/pipeline 1.130.0 → 1.132.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/build/node/yarn.js +2 -2
  2. package/dist/bundles/catladder-gitlab/index.js +1 -1
  3. package/dist/constants.js +1 -1
  4. package/dist/deploy/types/kubernetes.d.ts +4 -0
  5. package/dist/tsconfig.tsbuildinfo +1 -1
  6. package/examples/__snapshots__/cloud-run-memory-limit.ts.snap +48 -48
  7. package/examples/__snapshots__/cloud-run-meteor-with-worker.ts.snap +48 -48
  8. package/examples/__snapshots__/cloud-run-no-cpu-throttling.ts.snap +48 -48
  9. package/examples/__snapshots__/cloud-run-non-public.ts.snap +48 -48
  10. package/examples/__snapshots__/cloud-run-post-stop-job.ts.snap +48 -48
  11. package/examples/__snapshots__/cloud-run-with-sql-reuse-db.ts.snap +96 -96
  12. package/examples/__snapshots__/cloud-run-with-sql.ts.snap +96 -96
  13. package/examples/__snapshots__/cloud-run-with-worker.ts.snap +48 -48
  14. package/examples/__snapshots__/custom-build-job-with-tests.ts.snap +8 -8
  15. package/examples/__snapshots__/custom-build-job.ts.snap +8 -8
  16. package/examples/__snapshots__/custom-deploy.ts.snap +48 -48
  17. package/examples/__snapshots__/custom-envs.ts.snap +60 -60
  18. package/examples/__snapshots__/custom-sbom-java.ts.snap +8 -8
  19. package/examples/__snapshots__/kubernetes-application-customization.ts.snap +48 -48
  20. package/examples/__snapshots__/kubernetes-with-cloud-sql-legacy.ts.snap +48 -48
  21. package/examples/__snapshots__/kubernetes-with-cloud-sql.ts.snap +48 -48
  22. package/examples/__snapshots__/kubernetes-with-jobs.ts.snap +96 -96
  23. package/examples/__snapshots__/kubernetes-with-mongodb.ts.snap +48 -48
  24. package/examples/__snapshots__/meteor-kubernetes.ts.snap +48 -48
  25. package/examples/__snapshots__/native-app.ts.snap +96 -96
  26. package/examples/__snapshots__/node-build-with-custom-image.ts.snap +48 -48
  27. package/examples/__snapshots__/rails-k8s-with-worker.ts.snap +24 -0
  28. package/examples/__snapshots__/wait-for-other-deploy.ts.snap +96 -96
  29. package/examples/rails-k8s-with-worker.ts +3 -0
  30. package/package.json +1 -1
  31. package/src/build/node/yarn.ts +3 -3
  32. package/src/deploy/types/kubernetes.ts +4 -0
@@ -68,10 +68,10 @@ exports[`matches snapshot 1`] = `
68
68
  },
69
69
  "script": [
70
70
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
71
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
71
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
72
72
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
73
73
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
74
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
74
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
75
75
  "cd www",
76
76
  ],
77
77
  "services": [
@@ -576,10 +576,10 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
576
576
  },
577
577
  "script": [
578
578
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
579
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
579
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
580
580
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
581
581
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
582
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
582
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
583
583
  "cd www",
584
584
  ],
585
585
  "services": [
@@ -1051,10 +1051,10 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
1051
1051
  },
1052
1052
  "script": [
1053
1053
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
1054
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1054
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
1055
1055
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1056
1056
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1057
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1057
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
1058
1058
  "cd www",
1059
1059
  ],
1060
1060
  "services": [
@@ -1111,10 +1111,10 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
1111
1111
  },
1112
1112
  "script": [
1113
1113
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
1114
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1114
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
1115
1115
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1116
1116
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1117
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1117
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
1118
1118
  "cd www",
1119
1119
  ],
1120
1120
  "services": [
@@ -29,10 +29,10 @@ exports[`matches snapshot 1`] = `
29
29
  },
30
30
  "script": [
31
31
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
32
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
32
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
33
33
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
34
34
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
35
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
35
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
36
36
  "cd www",
37
37
  ],
38
38
  "stage": "build",
@@ -398,10 +398,10 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
398
398
  },
399
399
  "script": [
400
400
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
401
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
401
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
402
402
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
403
403
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
404
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
404
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
405
405
  "cd www",
406
406
  ],
407
407
  "stage": "build",
@@ -773,10 +773,10 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
773
773
  },
774
774
  "script": [
775
775
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
776
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
776
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
777
777
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
778
778
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
779
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
779
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
780
780
  "cd www",
781
781
  ],
782
782
  "stage": "build",
@@ -825,10 +825,10 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
825
825
  },
826
826
  "script": [
827
827
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
828
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
828
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
829
829
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
830
830
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
831
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
831
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
832
832
  "cd www",
833
833
  ],
834
834
  "stage": "build",
@@ -33,18 +33,18 @@ exports[`matches snapshot 1`] = `
33
33
  ],
34
34
  },
35
35
  "script": [
36
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
36
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
37
37
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
38
38
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
39
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
39
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
40
40
  "cd www",
41
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
41
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
42
42
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
43
43
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
44
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
45
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
44
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
45
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
46
46
  "yarn install --immutable",
47
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
47
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
48
48
  "yarn lint",
49
49
  ],
50
50
  "stage": "test",
@@ -104,18 +104,18 @@ exports[`matches snapshot 1`] = `
104
104
  },
105
105
  "script": [
106
106
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
107
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
107
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
108
108
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
109
109
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
110
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
110
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
111
111
  "cd www",
112
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
112
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
113
113
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
114
114
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
115
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
116
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
115
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
116
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
117
117
  "yarn install --immutable",
118
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
118
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
119
119
  "yarn build",
120
120
  ],
121
121
  "stage": "build",
@@ -384,18 +384,18 @@ COPY --chown=node:node .yarn /app/.yarn",
384
384
  ],
385
385
  },
386
386
  "script": [
387
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
387
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
388
388
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
389
389
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
390
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
390
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
391
391
  "cd www",
392
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
392
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
393
393
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
394
394
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
395
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
396
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
395
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
396
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
397
397
  "yarn install --immutable",
398
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
398
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
399
399
  "yarn test",
400
400
  ],
401
401
  "stage": "test",
@@ -531,18 +531,18 @@ COPY --chown=node:node .yarn /app/.yarn",
531
531
  ],
532
532
  },
533
533
  "script": [
534
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
534
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
535
535
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
536
536
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
537
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
537
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
538
538
  "cd www",
539
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
539
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
540
540
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
541
541
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
542
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
543
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
542
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
543
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
544
544
  "yarn install --immutable",
545
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
545
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
546
546
  "yarn lint",
547
547
  ],
548
548
  "stage": "test",
@@ -602,18 +602,18 @@ COPY --chown=node:node .yarn /app/.yarn",
602
602
  },
603
603
  "script": [
604
604
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
605
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
605
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
606
606
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
607
607
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
608
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
608
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
609
609
  "cd www",
610
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
610
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
611
611
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
612
612
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
613
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
614
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
613
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
614
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
615
615
  "yarn install --immutable",
616
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
616
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
617
617
  "yarn build",
618
618
  ],
619
619
  "stage": "build",
@@ -882,18 +882,18 @@ COPY --chown=node:node .yarn /app/.yarn",
882
882
  ],
883
883
  },
884
884
  "script": [
885
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
885
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
886
886
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
887
887
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
888
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
888
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
889
889
  "cd www",
890
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
890
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
891
891
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
892
892
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
893
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
894
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
893
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
894
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
895
895
  "yarn install --immutable",
896
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
896
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
897
897
  "yarn test",
898
898
  ],
899
899
  "stage": "test",
@@ -1049,18 +1049,18 @@ COPY --chown=node:node .yarn /app/.yarn",
1049
1049
  },
1050
1050
  "script": [
1051
1051
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
1052
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1052
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
1053
1053
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1054
1054
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1055
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1055
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
1056
1056
  "cd www",
1057
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1057
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
1058
1058
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1059
1059
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1060
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1061
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
1060
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
1061
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
1062
1062
  "yarn install --immutable",
1063
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
1063
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
1064
1064
  "yarn build",
1065
1065
  ],
1066
1066
  "stage": "build",
@@ -1130,18 +1130,18 @@ COPY --chown=node:node .yarn /app/.yarn",
1130
1130
  },
1131
1131
  "script": [
1132
1132
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > www/__build_info.json",
1133
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1133
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
1134
1134
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1135
1135
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1136
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1136
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
1137
1137
  "cd www",
1138
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
1138
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
1139
1139
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
1140
1140
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
1141
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
1142
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
1141
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
1142
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
1143
1143
  "yarn install --immutable",
1144
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
1144
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
1145
1145
  "yarn build",
1146
1146
  ],
1147
1147
  "stage": "build",
@@ -33,18 +33,18 @@ exports[`matches snapshot 1`] = `
33
33
  ],
34
34
  },
35
35
  "script": [
36
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
36
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
37
37
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
38
38
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
39
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
39
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
40
40
  "cd api",
41
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
41
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
42
42
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
43
43
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
44
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
45
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
44
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
45
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
46
46
  "yarn install --immutable",
47
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
47
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
48
48
  "yarn lint",
49
49
  ],
50
50
  "stage": "test",
@@ -104,18 +104,18 @@ exports[`matches snapshot 1`] = `
104
104
  },
105
105
  "script": [
106
106
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
107
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
107
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
108
108
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
109
109
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
110
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
110
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
111
111
  "cd api",
112
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
112
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
113
113
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
114
114
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
115
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
116
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
115
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
116
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
117
117
  "yarn install --immutable",
118
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
118
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
119
119
  ],
120
120
  "stage": "build",
121
121
  "variables": {
@@ -184,18 +184,18 @@ exports[`matches snapshot 1`] = `
184
184
  },
185
185
  "script": [
186
186
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
187
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
187
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
188
188
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
189
189
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
190
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
190
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
191
191
  "cd api",
192
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
192
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
193
193
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
194
194
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
195
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
196
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
195
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
196
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
197
197
  "yarn install --immutable",
198
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
198
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
199
199
  ],
200
200
  "stage": "build",
201
201
  "variables": {
@@ -264,18 +264,18 @@ exports[`matches snapshot 1`] = `
264
264
  },
265
265
  "script": [
266
266
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
267
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
267
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
268
268
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
269
269
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
270
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
270
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
271
271
  "cd api",
272
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
272
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
273
273
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
274
274
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
275
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
276
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
275
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
276
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
277
277
  "yarn install --immutable",
278
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
278
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
279
279
  ],
280
280
  "stage": "build",
281
281
  "variables": {
@@ -349,18 +349,18 @@ exports[`matches snapshot 1`] = `
349
349
  ],
350
350
  },
351
351
  "script": [
352
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
352
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
353
353
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
354
354
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
355
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
355
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
356
356
  "cd api",
357
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
357
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
358
358
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
359
359
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
360
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
361
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
360
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
361
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
362
362
  "yarn install --immutable",
363
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
363
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
364
364
  "yarn test",
365
365
  ],
366
366
  "stage": "test",
@@ -556,18 +556,18 @@ exports[`matches snapshot 1`] = `
556
556
  ],
557
557
  },
558
558
  "script": [
559
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
559
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
560
560
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
561
561
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
562
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
562
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
563
563
  "cd api",
564
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
564
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
565
565
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
566
566
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
567
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
568
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
567
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
568
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
569
569
  "yarn install --immutable",
570
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
570
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
571
571
  "yarn lint",
572
572
  ],
573
573
  "stage": "test",
@@ -627,18 +627,18 @@ exports[`matches snapshot 1`] = `
627
627
  },
628
628
  "script": [
629
629
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
630
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
630
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
631
631
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
632
632
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
633
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
633
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
634
634
  "cd api",
635
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
635
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
636
636
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
637
637
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
638
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
639
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
638
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
639
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
640
640
  "yarn install --immutable",
641
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
641
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
642
642
  ],
643
643
  "stage": "build",
644
644
  "variables": {
@@ -712,18 +712,18 @@ exports[`matches snapshot 1`] = `
712
712
  ],
713
713
  },
714
714
  "script": [
715
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
715
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
716
716
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
717
717
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
718
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
718
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
719
719
  "cd api",
720
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
720
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
721
721
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
722
722
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
723
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
724
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
723
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
724
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
725
725
  "yarn install --immutable",
726
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
726
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
727
727
  "yarn test",
728
728
  ],
729
729
  "stage": "test",
@@ -893,18 +893,18 @@ exports[`matches snapshot 1`] = `
893
893
  },
894
894
  "script": [
895
895
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
896
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
896
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
897
897
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
898
898
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
899
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
899
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
900
900
  "cd api",
901
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
901
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
902
902
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
903
903
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
904
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
905
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
904
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
905
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
906
906
  "yarn install --immutable",
907
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
907
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
908
908
  ],
909
909
  "stage": "build",
910
910
  "variables": {
@@ -973,18 +973,18 @@ exports[`matches snapshot 1`] = `
973
973
  },
974
974
  "script": [
975
975
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > api/__build_info.json",
976
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
976
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
977
977
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
978
978
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
979
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
979
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
980
980
  "cd api",
981
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
981
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
982
982
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
983
983
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
984
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
985
- "echo -e "\\e[0Ksection_start:$(date +%s):yarn install[collapsed=true]\\r\\e[0KYarn install"",
984
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
985
+ "echo -e "\\e[0Ksection_start:$(date +%s):yarninstall[collapsed=true]\\r\\e[0KYarn install"",
986
986
  "yarn install --immutable",
987
- "echo -e "\\e[0Ksection_end:$(date +%s):yarn install\\r\\e[0K"",
987
+ "echo -e "\\e[0Ksection_end:$(date +%s):yarninstall\\r\\e[0K"",
988
988
  ],
989
989
  "stage": "build",
990
990
  "variables": {
@@ -29,10 +29,10 @@ exports[`matches snapshot 1`] = `
29
29
  },
30
30
  "script": [
31
31
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > ./__build_info.json",
32
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
32
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
33
33
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
34
34
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
35
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
35
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
36
36
  "cd .",
37
37
  "mvn package",
38
38
  "cp -r target dist",
@@ -400,10 +400,10 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
400
400
  },
401
401
  "script": [
402
402
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > ./__build_info.json",
403
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
403
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
404
404
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
405
405
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
406
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
406
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
407
407
  "cd .",
408
408
  "mvn package",
409
409
  "cp -r target dist",
@@ -777,10 +777,10 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
777
777
  },
778
778
  "script": [
779
779
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > ./__build_info.json",
780
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
780
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
781
781
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
782
782
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
783
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
783
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
784
784
  "cd .",
785
785
  "mvn package",
786
786
  "cp -r target dist",
@@ -831,10 +831,10 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
831
831
  },
832
832
  "script": [
833
833
  "echo '{"id":"some-id","time":"01-01-2023 12:13:14"}' > ./__build_info.json",
834
- "echo -e "\\e[0Ksection_start:$(date +%s):node install[collapsed=true]\\r\\e[0KEnsure node version"",
834
+ "echo -e "\\e[0Ksection_start:$(date +%s):nodeinstall[collapsed=true]\\r\\e[0KEnsure node version"",
835
835
  "if [ -f ~/.nvm/nvm.sh ]; then source ~/.nvm/nvm.sh; fi",
836
836
  "if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi",
837
- "echo -e "\\e[0Ksection_end:$(date +%s):node install\\r\\e[0K"",
837
+ "echo -e "\\e[0Ksection_end:$(date +%s):nodeinstall\\r\\e[0K"",
838
838
  "cd .",
839
839
  "mvn package",
840
840
  "cp -r target dist",