@catladder/pipeline 3.26.0 → 3.27.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 (54) hide show
  1. package/dist/build/node/yarn.js +3 -2
  2. package/dist/constants.js +1 -1
  3. package/dist/deploy/types/googleCloudRun.d.ts +1 -1
  4. package/dist/tsconfig.tsbuildinfo +1 -1
  5. package/examples/__snapshots__/automatic-releases.test.ts.snap +16 -12
  6. package/examples/__snapshots__/cloud-run-health-check-defaults.test.ts.snap +16 -12
  7. package/examples/__snapshots__/cloud-run-health-check-only-startup.test.ts.snap +16 -12
  8. package/examples/__snapshots__/cloud-run-health-check.test.ts.snap +16 -12
  9. package/examples/__snapshots__/cloud-run-http2.test.ts.snap +16 -12
  10. package/examples/__snapshots__/cloud-run-memory-limit.test.ts.snap +16 -12
  11. package/examples/__snapshots__/cloud-run-meteor-with-worker.test.ts.snap +8 -8
  12. package/examples/__snapshots__/cloud-run-nextjs.test.ts.snap +16 -12
  13. package/examples/__snapshots__/cloud-run-no-cpu-throttling.test.ts.snap +16 -12
  14. package/examples/__snapshots__/cloud-run-no-service.test.ts.snap +16 -12
  15. package/examples/__snapshots__/cloud-run-non-public.test.ts.snap +16 -12
  16. package/examples/__snapshots__/cloud-run-post-stop-job.test.ts.snap +16 -12
  17. package/examples/__snapshots__/cloud-run-service-custom-vpc-connector.test.ts.snap +16 -12
  18. package/examples/__snapshots__/cloud-run-service-custom-vpc.test.ts.snap +16 -12
  19. package/examples/__snapshots__/cloud-run-service-gen2.test.ts.snap +16 -12
  20. package/examples/__snapshots__/cloud-run-service-increase-timout.test.ts.snap +16 -12
  21. package/examples/__snapshots__/cloud-run-service-with-volumes.test.ts.snap +16 -12
  22. package/examples/__snapshots__/cloud-run-storybook.test.ts.snap +12 -8
  23. package/examples/__snapshots__/cloud-run-with-agents.test.ts.snap +16 -12
  24. package/examples/__snapshots__/cloud-run-with-gpu.test.ts.snap +16 -12
  25. package/examples/__snapshots__/cloud-run-with-ngnix.test.ts.snap +16 -12
  26. package/examples/__snapshots__/cloud-run-with-sql-legacy-jobs.test.ts.snap +16 -12
  27. package/examples/__snapshots__/cloud-run-with-sql-multiple-dbs.test.ts.snap +48 -36
  28. package/examples/__snapshots__/cloud-run-with-sql-reuse-db.test.ts.snap +32 -24
  29. package/examples/__snapshots__/cloud-run-with-sql.test.ts.snap +16 -12
  30. package/examples/__snapshots__/cloud-run-with-worker.test.ts.snap +16 -12
  31. package/examples/__snapshots__/custom-deploy.test.ts.snap +16 -12
  32. package/examples/__snapshots__/custom-envs.test.ts.snap +14 -14
  33. package/examples/__snapshots__/custom-verify-job.test.ts.snap +16 -12
  34. package/examples/__snapshots__/git-submodule.test.ts.snap +16 -12
  35. package/examples/__snapshots__/kubernetes-application-customization.test.ts.snap +16 -12
  36. package/examples/__snapshots__/kubernetes-with-cloud-sql.test.ts.snap +16 -12
  37. package/examples/__snapshots__/kubernetes-with-jobs.test.ts.snap +32 -24
  38. package/examples/__snapshots__/kubernetes-with-mongodb.test.ts.snap +16 -12
  39. package/examples/__snapshots__/local-dot-env.test.ts.snap +16 -12
  40. package/examples/__snapshots__/meteor-kubernetes.test.ts.snap +8 -8
  41. package/examples/__snapshots__/modify-generated-files.test.ts.snap +8 -8
  42. package/examples/__snapshots__/modify-generated-yaml.test.ts.snap +8 -8
  43. package/examples/__snapshots__/multiline-var.test.ts.snap +48 -36
  44. package/examples/__snapshots__/native-app.test.ts.snap +24 -20
  45. package/examples/__snapshots__/node-build-with-custom-image.test.ts.snap +16 -12
  46. package/examples/__snapshots__/node-build-with-docker-additions.test.ts.snap +16 -12
  47. package/examples/__snapshots__/override-secrets.test.ts.snap +16 -12
  48. package/examples/__snapshots__/referencing-other-vars.test.ts.snap +48 -36
  49. package/examples/__snapshots__/wait-for-other-deploy.test.ts.snap +16 -16
  50. package/examples/__snapshots__/workspace-api-www-turbo-cache.test.ts.snap +24 -16
  51. package/examples/__snapshots__/workspace-api-www.test.ts.snap +24 -16
  52. package/package.json +1 -1
  53. package/src/build/node/yarn.ts +3 -2
  54. package/src/deploy/types/googleCloudRun.ts +1 -1
@@ -149,7 +149,7 @@ before_script:
149
149
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
150
150
  - collapseable_section_end "nodeinstall"
151
151
  - collapseable_section_start "yarninstall" "Yarn install"
152
- - yarn install --immutable
152
+ - yarn install --immutable --inline-builds
153
153
  - collapseable_section_end "yarninstall"
154
154
  - yarn lint
155
155
  cache:
@@ -189,7 +189,7 @@ before_script:
189
189
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
190
190
  - collapseable_section_end "nodeinstall"
191
191
  - collapseable_section_start "yarninstall" "Yarn install"
192
- - yarn install --immutable
192
+ - yarn install --immutable --inline-builds
193
193
  - collapseable_section_end "yarninstall"
194
194
  - yarn test
195
195
  cache:
@@ -261,7 +261,7 @@ before_script:
261
261
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
262
262
  - collapseable_section_end "nodeinstall"
263
263
  - collapseable_section_start "yarninstall" "Yarn install"
264
- - yarn install --immutable
264
+ - yarn install --immutable --inline-builds
265
265
  - collapseable_section_end "yarninstall"
266
266
  - yarn build
267
267
  cache:
@@ -316,7 +316,8 @@ before_script:
316
316
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
317
317
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
318
318
  - |-
319
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
319
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
320
+ COPY --chown=node:node $APP_DIR .
320
321
  RUN yarn plugin import workspace-tools
321
322
  RUN yarn workspaces focus --production && yarn rebuild"
322
323
  - |-
@@ -562,7 +563,7 @@ before_script:
562
563
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
563
564
  - collapseable_section_end "nodeinstall"
564
565
  - collapseable_section_start "yarninstall" "Yarn install"
565
- - yarn install --immutable
566
+ - yarn install --immutable --inline-builds
566
567
  - collapseable_section_end "yarninstall"
567
568
  - yarn lint
568
569
  cache:
@@ -606,7 +607,7 @@ before_script:
606
607
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
607
608
  - collapseable_section_end "nodeinstall"
608
609
  - collapseable_section_start "yarninstall" "Yarn install"
609
- - yarn install --immutable
610
+ - yarn install --immutable --inline-builds
610
611
  - collapseable_section_end "yarninstall"
611
612
  - yarn test
612
613
  cache:
@@ -682,7 +683,7 @@ before_script:
682
683
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
683
684
  - collapseable_section_end "nodeinstall"
684
685
  - collapseable_section_start "yarninstall" "Yarn install"
685
- - yarn install --immutable
686
+ - yarn install --immutable --inline-builds
686
687
  - collapseable_section_end "yarninstall"
687
688
  - yarn build
688
689
  cache:
@@ -741,7 +742,8 @@ before_script:
741
742
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
742
743
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
743
744
  - |-
744
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
745
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
746
+ COPY --chown=node:node $APP_DIR .
745
747
  RUN yarn plugin import workspace-tools
746
748
  RUN yarn workspaces focus --production && yarn rebuild"
747
749
  - |-
@@ -1004,7 +1006,7 @@ before_script:
1004
1006
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1005
1007
  - collapseable_section_end "nodeinstall"
1006
1008
  - collapseable_section_start "yarninstall" "Yarn install"
1007
- - yarn install --immutable
1009
+ - yarn install --immutable --inline-builds
1008
1010
  - collapseable_section_end "yarninstall"
1009
1011
  - yarn build
1010
1012
  cache:
@@ -1059,7 +1061,8 @@ before_script:
1059
1061
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1060
1062
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1061
1063
  - |-
1062
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1064
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1065
+ COPY --chown=node:node $APP_DIR .
1063
1066
  RUN yarn plugin import workspace-tools
1064
1067
  RUN yarn workspaces focus --production && yarn rebuild"
1065
1068
  - |-
@@ -1309,7 +1312,7 @@ before_script:
1309
1312
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1310
1313
  - collapseable_section_end "nodeinstall"
1311
1314
  - collapseable_section_start "yarninstall" "Yarn install"
1312
- - yarn install --immutable
1315
+ - yarn install --immutable --inline-builds
1313
1316
  - collapseable_section_end "yarninstall"
1314
1317
  - yarn build
1315
1318
  cache:
@@ -1364,7 +1367,8 @@ before_script:
1364
1367
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1365
1368
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1366
1369
  - |-
1367
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1370
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1371
+ COPY --chown=node:node $APP_DIR .
1368
1372
  RUN yarn plugin import workspace-tools
1369
1373
  RUN yarn workspaces focus --production && yarn rebuild"
1370
1374
  - |-
@@ -149,7 +149,7 @@ before_script:
149
149
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
150
150
  - collapseable_section_end "nodeinstall"
151
151
  - collapseable_section_start "yarninstall" "Yarn install"
152
- - yarn install --immutable
152
+ - yarn install --immutable --inline-builds
153
153
  - collapseable_section_end "yarninstall"
154
154
  - yarn lint
155
155
  cache:
@@ -189,7 +189,7 @@ before_script:
189
189
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
190
190
  - collapseable_section_end "nodeinstall"
191
191
  - collapseable_section_start "yarninstall" "Yarn install"
192
- - yarn install --immutable
192
+ - yarn install --immutable --inline-builds
193
193
  - collapseable_section_end "yarninstall"
194
194
  - yarn test
195
195
  cache:
@@ -253,7 +253,7 @@ before_script:
253
253
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
254
254
  - collapseable_section_end "nodeinstall"
255
255
  - collapseable_section_start "yarninstall" "Yarn install"
256
- - yarn install --immutable
256
+ - yarn install --immutable --inline-builds
257
257
  - collapseable_section_end "yarninstall"
258
258
  - yarn build
259
259
  cache:
@@ -309,7 +309,8 @@ before_script:
309
309
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
310
310
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
311
311
  - |-
312
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
312
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
313
+ COPY --chown=node:node $APP_DIR .
313
314
  RUN yarn plugin import workspace-tools
314
315
  RUN yarn workspaces focus --production && yarn rebuild"
315
316
  - |-
@@ -466,7 +467,7 @@ before_script:
466
467
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
467
468
  - collapseable_section_end "nodeinstall"
468
469
  - collapseable_section_start "yarninstall" "Yarn install"
469
- - yarn install --immutable
470
+ - yarn install --immutable --inline-builds
470
471
  - collapseable_section_end "yarninstall"
471
472
  - yarn lint
472
473
  cache:
@@ -510,7 +511,7 @@ before_script:
510
511
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
511
512
  - collapseable_section_end "nodeinstall"
512
513
  - collapseable_section_start "yarninstall" "Yarn install"
513
- - yarn install --immutable
514
+ - yarn install --immutable --inline-builds
514
515
  - collapseable_section_end "yarninstall"
515
516
  - yarn test
516
517
  cache:
@@ -578,7 +579,7 @@ before_script:
578
579
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
579
580
  - collapseable_section_end "nodeinstall"
580
581
  - collapseable_section_start "yarninstall" "Yarn install"
581
- - yarn install --immutable
582
+ - yarn install --immutable --inline-builds
582
583
  - collapseable_section_end "yarninstall"
583
584
  - yarn build
584
585
  cache:
@@ -638,7 +639,8 @@ before_script:
638
639
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
639
640
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
640
641
  - |-
641
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
642
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
643
+ COPY --chown=node:node $APP_DIR .
642
644
  RUN yarn plugin import workspace-tools
643
645
  RUN yarn workspaces focus --production && yarn rebuild"
644
646
  - |-
@@ -831,7 +833,7 @@ before_script:
831
833
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
832
834
  - collapseable_section_end "nodeinstall"
833
835
  - collapseable_section_start "yarninstall" "Yarn install"
834
- - yarn install --immutable
836
+ - yarn install --immutable --inline-builds
835
837
  - collapseable_section_end "yarninstall"
836
838
  - yarn build
837
839
  cache:
@@ -887,7 +889,8 @@ before_script:
887
889
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
888
890
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
889
891
  - |-
890
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
892
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
893
+ COPY --chown=node:node $APP_DIR .
891
894
  RUN yarn plugin import workspace-tools
892
895
  RUN yarn workspaces focus --production && yarn rebuild"
893
896
  - |-
@@ -1041,7 +1044,7 @@ before_script:
1041
1044
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1042
1045
  - collapseable_section_end "nodeinstall"
1043
1046
  - collapseable_section_start "yarninstall" "Yarn install"
1044
- - yarn install --immutable
1047
+ - yarn install --immutable --inline-builds
1045
1048
  - collapseable_section_end "yarninstall"
1046
1049
  - yarn build
1047
1050
  cache:
@@ -1097,7 +1100,8 @@ before_script:
1097
1100
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
1098
1101
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1099
1102
  - |-
1100
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1103
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1104
+ COPY --chown=node:node $APP_DIR .
1101
1105
  RUN yarn plugin import workspace-tools
1102
1106
  RUN yarn workspaces focus --production && yarn rebuild"
1103
1107
  - |-
@@ -165,7 +165,7 @@ before_script:
165
165
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
166
166
  - collapseable_section_end "nodeinstall"
167
167
  - collapseable_section_start "yarninstall" "Yarn install"
168
- - yarn install --immutable
168
+ - yarn install --immutable --inline-builds
169
169
  - collapseable_section_end "yarninstall"
170
170
  - yarn lint
171
171
  cache:
@@ -205,7 +205,7 @@ before_script:
205
205
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
206
206
  - collapseable_section_end "nodeinstall"
207
207
  - collapseable_section_start "yarninstall" "Yarn install"
208
- - yarn install --immutable
208
+ - yarn install --immutable --inline-builds
209
209
  - collapseable_section_end "yarninstall"
210
210
  - yarn test
211
211
  cache:
@@ -269,7 +269,7 @@ before_script:
269
269
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
270
270
  - collapseable_section_end "nodeinstall"
271
271
  - collapseable_section_start "yarninstall" "Yarn install"
272
- - yarn install --immutable
272
+ - yarn install --immutable --inline-builds
273
273
  - collapseable_section_end "yarninstall"
274
274
  - yarn build
275
275
  cache:
@@ -363,7 +363,7 @@ before_script:
363
363
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
364
364
  - collapseable_section_end "nodeinstall"
365
365
  - collapseable_section_start "yarninstall" "Yarn install"
366
- - yarn install --immutable
366
+ - yarn install --immutable --inline-builds
367
367
  - collapseable_section_end "yarninstall"
368
368
  - yarn lint
369
369
  cache:
@@ -403,7 +403,7 @@ before_script:
403
403
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
404
404
  - collapseable_section_end "nodeinstall"
405
405
  - collapseable_section_start "yarninstall" "Yarn install"
406
- - yarn install --immutable
406
+ - yarn install --immutable --inline-builds
407
407
  - collapseable_section_end "yarninstall"
408
408
  - yarn test
409
409
  cache:
@@ -467,7 +467,7 @@ before_script:
467
467
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
468
468
  - collapseable_section_end "nodeinstall"
469
469
  - collapseable_section_start "yarninstall" "Yarn install"
470
- - yarn install --immutable
470
+ - yarn install --immutable --inline-builds
471
471
  - collapseable_section_end "yarninstall"
472
472
  - yarn build
473
473
  cache:
@@ -561,7 +561,7 @@ before_script:
561
561
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
562
562
  - collapseable_section_end "nodeinstall"
563
563
  - collapseable_section_start "yarninstall" "Yarn install"
564
- - yarn install --immutable
564
+ - yarn install --immutable --inline-builds
565
565
  - collapseable_section_end "yarninstall"
566
566
  - yarn lint
567
567
  cache:
@@ -601,7 +601,7 @@ before_script:
601
601
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
602
602
  - collapseable_section_end "nodeinstall"
603
603
  - collapseable_section_start "yarninstall" "Yarn install"
604
- - yarn install --immutable
604
+ - yarn install --immutable --inline-builds
605
605
  - collapseable_section_end "yarninstall"
606
606
  - yarn test
607
607
  cache:
@@ -665,7 +665,7 @@ before_script:
665
665
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
666
666
  - collapseable_section_end "nodeinstall"
667
667
  - collapseable_section_start "yarninstall" "Yarn install"
668
- - yarn install --immutable
668
+ - yarn install --immutable --inline-builds
669
669
  - collapseable_section_end "yarninstall"
670
670
  - yarn build
671
671
  cache:
@@ -759,7 +759,7 @@ before_script:
759
759
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
760
760
  - collapseable_section_end "nodeinstall"
761
761
  - collapseable_section_start "yarninstall" "Yarn install"
762
- - yarn install --immutable
762
+ - yarn install --immutable --inline-builds
763
763
  - collapseable_section_end "yarninstall"
764
764
  - yarn lint
765
765
  cache:
@@ -803,7 +803,7 @@ before_script:
803
803
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
804
804
  - collapseable_section_end "nodeinstall"
805
805
  - collapseable_section_start "yarninstall" "Yarn install"
806
- - yarn install --immutable
806
+ - yarn install --immutable --inline-builds
807
807
  - collapseable_section_end "yarninstall"
808
808
  - yarn test
809
809
  cache:
@@ -871,7 +871,7 @@ before_script:
871
871
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
872
872
  - collapseable_section_end "nodeinstall"
873
873
  - collapseable_section_start "yarninstall" "Yarn install"
874
- - yarn install --immutable
874
+ - yarn install --immutable --inline-builds
875
875
  - collapseable_section_end "yarninstall"
876
876
  - yarn build
877
877
  cache:
@@ -972,7 +972,7 @@ before_script:
972
972
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
973
973
  - collapseable_section_end "nodeinstall"
974
974
  - collapseable_section_start "yarninstall" "Yarn install"
975
- - yarn install --immutable
975
+ - yarn install --immutable --inline-builds
976
976
  - collapseable_section_end "yarninstall"
977
977
  - yarn build
978
978
  cache:
@@ -1069,7 +1069,7 @@ before_script:
1069
1069
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1070
1070
  - collapseable_section_end "nodeinstall"
1071
1071
  - collapseable_section_start "yarninstall" "Yarn install"
1072
- - yarn install --immutable
1072
+ - yarn install --immutable --inline-builds
1073
1073
  - collapseable_section_end "yarninstall"
1074
1074
  - yarn build
1075
1075
  cache:
@@ -149,7 +149,7 @@ before_script:
149
149
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
150
150
  - collapseable_section_end "nodeinstall"
151
151
  - collapseable_section_start "yarninstall" "Yarn install"
152
- - yarn install --immutable
152
+ - yarn install --immutable --inline-builds
153
153
  - collapseable_section_end "yarninstall"
154
154
  - yarn lint
155
155
  cache:
@@ -189,7 +189,7 @@ before_script:
189
189
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
190
190
  - collapseable_section_end "nodeinstall"
191
191
  - collapseable_section_start "yarninstall" "Yarn install"
192
- - yarn install --immutable
192
+ - yarn install --immutable --inline-builds
193
193
  - collapseable_section_end "yarninstall"
194
194
  - yarn test
195
195
  cache:
@@ -261,7 +261,7 @@ before_script:
261
261
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
262
262
  - collapseable_section_end "nodeinstall"
263
263
  - collapseable_section_start "yarninstall" "Yarn install"
264
- - yarn install --immutable
264
+ - yarn install --immutable --inline-builds
265
265
  - collapseable_section_end "yarninstall"
266
266
  - yarn build
267
267
  cache:
@@ -316,7 +316,8 @@ before_script:
316
316
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/www"
317
317
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
318
318
  - |-
319
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
319
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
320
+ COPY --chown=node:node $APP_DIR .
320
321
  RUN yarn plugin import workspace-tools
321
322
  RUN yarn workspaces focus --production && yarn rebuild"
322
323
  - |-
@@ -615,7 +616,7 @@ before_script:
615
616
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
616
617
  - collapseable_section_end "nodeinstall"
617
618
  - collapseable_section_start "yarninstall" "Yarn install"
618
- - yarn install --immutable
619
+ - yarn install --immutable --inline-builds
619
620
  - collapseable_section_end "yarninstall"
620
621
  - yarn lint
621
622
  cache:
@@ -659,7 +660,7 @@ before_script:
659
660
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
660
661
  - collapseable_section_end "nodeinstall"
661
662
  - collapseable_section_start "yarninstall" "Yarn install"
662
- - yarn install --immutable
663
+ - yarn install --immutable --inline-builds
663
664
  - collapseable_section_end "yarninstall"
664
665
  - yarn test
665
666
  cache:
@@ -735,7 +736,7 @@ before_script:
735
736
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
736
737
  - collapseable_section_end "nodeinstall"
737
738
  - collapseable_section_start "yarninstall" "Yarn install"
738
- - yarn install --immutable
739
+ - yarn install --immutable --inline-builds
739
740
  - collapseable_section_end "yarninstall"
740
741
  - yarn build
741
742
  cache:
@@ -794,7 +795,8 @@ before_script:
794
795
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/www"
795
796
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
796
797
  - |-
797
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
798
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
799
+ COPY --chown=node:node $APP_DIR .
798
800
  RUN yarn plugin import workspace-tools
799
801
  RUN yarn workspaces focus --production && yarn rebuild"
800
802
  - |-
@@ -1114,7 +1116,7 @@ before_script:
1114
1116
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1115
1117
  - collapseable_section_end "nodeinstall"
1116
1118
  - collapseable_section_start "yarninstall" "Yarn install"
1117
- - yarn install --immutable
1119
+ - yarn install --immutable --inline-builds
1118
1120
  - collapseable_section_end "yarninstall"
1119
1121
  - yarn build
1120
1122
  cache:
@@ -1169,7 +1171,8 @@ before_script:
1169
1171
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/www"
1170
1172
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1171
1173
  - |-
1172
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1174
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1175
+ COPY --chown=node:node $APP_DIR .
1173
1176
  RUN yarn plugin import workspace-tools
1174
1177
  RUN yarn workspaces focus --production && yarn rebuild"
1175
1178
  - |-
@@ -1472,7 +1475,7 @@ before_script:
1472
1475
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1473
1476
  - collapseable_section_end "nodeinstall"
1474
1477
  - collapseable_section_start "yarninstall" "Yarn install"
1475
- - yarn install --immutable
1478
+ - yarn install --immutable --inline-builds
1476
1479
  - collapseable_section_end "yarninstall"
1477
1480
  - yarn build
1478
1481
  cache:
@@ -1527,7 +1530,8 @@ before_script:
1527
1530
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/www"
1528
1531
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1529
1532
  - |-
1530
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1533
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1534
+ COPY --chown=node:node $APP_DIR .
1531
1535
  RUN yarn plugin import workspace-tools
1532
1536
  RUN yarn workspaces focus --production && yarn rebuild"
1533
1537
  - |-
@@ -150,7 +150,7 @@ before_script:
150
150
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
151
151
  - collapseable_section_end "nodeinstall"
152
152
  - collapseable_section_start "yarninstall" "Yarn install"
153
- - yarn install --immutable
153
+ - yarn install --immutable --inline-builds
154
154
  - collapseable_section_end "yarninstall"
155
155
  - yarn lint
156
156
  cache:
@@ -190,7 +190,7 @@ before_script:
190
190
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
191
191
  - collapseable_section_end "nodeinstall"
192
192
  - collapseable_section_start "yarninstall" "Yarn install"
193
- - yarn install --immutable
193
+ - yarn install --immutable --inline-builds
194
194
  - collapseable_section_end "yarninstall"
195
195
  - yarn test
196
196
  cache:
@@ -262,7 +262,7 @@ before_script:
262
262
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
263
263
  - collapseable_section_end "nodeinstall"
264
264
  - collapseable_section_start "yarninstall" "Yarn install"
265
- - yarn install --immutable
265
+ - yarn install --immutable --inline-builds
266
266
  - collapseable_section_end "yarninstall"
267
267
  - yarn build
268
268
  cache:
@@ -317,7 +317,8 @@ before_script:
317
317
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/my-project-id/catladder-deploy/pan-test-app/caches/app"
318
318
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
319
319
  - |-
320
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
320
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
321
+ COPY --chown=node:node $APP_DIR .
321
322
  RUN yarn plugin import workspace-tools
322
323
  RUN yarn workspaces focus --production && yarn rebuild"
323
324
  - |-
@@ -561,7 +562,7 @@ before_script:
561
562
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
562
563
  - collapseable_section_end "nodeinstall"
563
564
  - collapseable_section_start "yarninstall" "Yarn install"
564
- - yarn install --immutable
565
+ - yarn install --immutable --inline-builds
565
566
  - collapseable_section_end "yarninstall"
566
567
  - yarn lint
567
568
  cache:
@@ -605,7 +606,7 @@ before_script:
605
606
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
606
607
  - collapseable_section_end "nodeinstall"
607
608
  - collapseable_section_start "yarninstall" "Yarn install"
608
- - yarn install --immutable
609
+ - yarn install --immutable --inline-builds
609
610
  - collapseable_section_end "yarninstall"
610
611
  - yarn test
611
612
  cache:
@@ -681,7 +682,7 @@ before_script:
681
682
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
682
683
  - collapseable_section_end "nodeinstall"
683
684
  - collapseable_section_start "yarninstall" "Yarn install"
684
- - yarn install --immutable
685
+ - yarn install --immutable --inline-builds
685
686
  - collapseable_section_end "yarninstall"
686
687
  - yarn build
687
688
  cache:
@@ -740,7 +741,8 @@ before_script:
740
741
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/my-project-id/catladder-deploy/pan-test-app/caches/app"
741
742
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
742
743
  - |-
743
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
744
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
745
+ COPY --chown=node:node $APP_DIR .
744
746
  RUN yarn plugin import workspace-tools
745
747
  RUN yarn workspaces focus --production && yarn rebuild"
746
748
  - |-
@@ -1003,7 +1005,7 @@ before_script:
1003
1005
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1004
1006
  - collapseable_section_end "nodeinstall"
1005
1007
  - collapseable_section_start "yarninstall" "Yarn install"
1006
- - yarn install --immutable
1008
+ - yarn install --immutable --inline-builds
1007
1009
  - collapseable_section_end "yarninstall"
1008
1010
  - yarn build
1009
1011
  cache:
@@ -1058,7 +1060,8 @@ before_script:
1058
1060
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/my-project-id/catladder-deploy/pan-test-app/caches/app"
1059
1061
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1060
1062
  - |-
1061
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1063
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1064
+ COPY --chown=node:node $APP_DIR .
1062
1065
  RUN yarn plugin import workspace-tools
1063
1066
  RUN yarn workspaces focus --production && yarn rebuild"
1064
1067
  - |-
@@ -1306,7 +1309,7 @@ before_script:
1306
1309
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1307
1310
  - collapseable_section_end "nodeinstall"
1308
1311
  - collapseable_section_start "yarninstall" "Yarn install"
1309
- - yarn install --immutable
1312
+ - yarn install --immutable --inline-builds
1310
1313
  - collapseable_section_end "yarninstall"
1311
1314
  - yarn build
1312
1315
  cache:
@@ -1361,7 +1364,8 @@ before_script:
1361
1364
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/my-project-id/catladder-deploy/pan-test-app/caches/app"
1362
1365
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1363
1366
  - |-
1364
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1367
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1368
+ COPY --chown=node:node $APP_DIR .
1365
1369
  RUN yarn plugin import workspace-tools
1366
1370
  RUN yarn workspaces focus --production && yarn rebuild"
1367
1371
  - |-
@@ -149,7 +149,7 @@ before_script:
149
149
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
150
150
  - collapseable_section_end "nodeinstall"
151
151
  - collapseable_section_start "yarninstall" "Yarn install"
152
- - yarn install --immutable
152
+ - yarn install --immutable --inline-builds
153
153
  - collapseable_section_end "yarninstall"
154
154
  - yarn lint
155
155
  cache:
@@ -189,7 +189,7 @@ before_script:
189
189
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
190
190
  - collapseable_section_end "nodeinstall"
191
191
  - collapseable_section_start "yarninstall" "Yarn install"
192
- - yarn install --immutable
192
+ - yarn install --immutable --inline-builds
193
193
  - collapseable_section_end "yarninstall"
194
194
  - yarn test
195
195
  cache:
@@ -243,7 +243,7 @@ before_script:
243
243
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
244
244
  - collapseable_section_end "nodeinstall"
245
245
  - collapseable_section_start "yarninstall" "Yarn install"
246
- - yarn install --immutable
246
+ - yarn install --immutable --inline-builds
247
247
  - collapseable_section_end "yarninstall"
248
248
  - yarn build
249
249
  cache:
@@ -298,7 +298,8 @@ before_script:
298
298
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
299
299
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
300
300
  - |-
301
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
301
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
302
+ COPY --chown=node:node $APP_DIR .
302
303
  RUN yarn plugin import workspace-tools
303
304
  RUN yarn workspaces focus --production && yarn rebuild"
304
305
  - |-
@@ -642,7 +643,7 @@ before_script:
642
643
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
643
644
  - collapseable_section_end "nodeinstall"
644
645
  - collapseable_section_start "yarninstall" "Yarn install"
645
- - yarn install --immutable
646
+ - yarn install --immutable --inline-builds
646
647
  - collapseable_section_end "yarninstall"
647
648
  - yarn lint
648
649
  cache:
@@ -686,7 +687,7 @@ before_script:
686
687
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
687
688
  - collapseable_section_end "nodeinstall"
688
689
  - collapseable_section_start "yarninstall" "Yarn install"
689
- - yarn install --immutable
690
+ - yarn install --immutable --inline-builds
690
691
  - collapseable_section_end "yarninstall"
691
692
  - yarn test
692
693
  cache:
@@ -744,7 +745,7 @@ before_script:
744
745
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
745
746
  - collapseable_section_end "nodeinstall"
746
747
  - collapseable_section_start "yarninstall" "Yarn install"
747
- - yarn install --immutable
748
+ - yarn install --immutable --inline-builds
748
749
  - collapseable_section_end "yarninstall"
749
750
  - yarn build
750
751
  cache:
@@ -803,7 +804,8 @@ before_script:
803
804
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
804
805
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
805
806
  - |-
806
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
807
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
808
+ COPY --chown=node:node $APP_DIR .
807
809
  RUN yarn plugin import workspace-tools
808
810
  RUN yarn workspaces focus --production && yarn rebuild"
809
811
  - |-
@@ -1143,7 +1145,7 @@ before_script:
1143
1145
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1144
1146
  - collapseable_section_end "nodeinstall"
1145
1147
  - collapseable_section_start "yarninstall" "Yarn install"
1146
- - yarn install --immutable
1148
+ - yarn install --immutable --inline-builds
1147
1149
  - collapseable_section_end "yarninstall"
1148
1150
  - yarn build
1149
1151
  cache:
@@ -1198,7 +1200,8 @@ before_script:
1198
1200
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
1199
1201
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1200
1202
  - |-
1201
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1203
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1204
+ COPY --chown=node:node $APP_DIR .
1202
1205
  RUN yarn plugin import workspace-tools
1203
1206
  RUN yarn workspaces focus --production && yarn rebuild"
1204
1207
  - |-
@@ -1528,7 +1531,7 @@ before_script:
1528
1531
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1529
1532
  - collapseable_section_end "nodeinstall"
1530
1533
  - collapseable_section_start "yarninstall" "Yarn install"
1531
- - yarn install --immutable
1534
+ - yarn install --immutable --inline-builds
1532
1535
  - collapseable_section_end "yarninstall"
1533
1536
  - yarn build
1534
1537
  cache:
@@ -1583,7 +1586,8 @@ before_script:
1583
1586
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
1584
1587
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1585
1588
  - |-
1586
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1589
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1590
+ COPY --chown=node:node $APP_DIR .
1587
1591
  RUN yarn plugin import workspace-tools
1588
1592
  RUN yarn workspaces focus --production && yarn rebuild"
1589
1593
  - |-