@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:
@@ -263,7 +263,7 @@ before_script:
263
263
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
264
264
  - collapseable_section_end "nodeinstall"
265
265
  - collapseable_section_start "yarninstall" "Yarn install"
266
- - yarn install --immutable
266
+ - yarn install --immutable --inline-builds
267
267
  - collapseable_section_end "yarninstall"
268
268
  - yarn build
269
269
  cache:
@@ -318,7 +318,8 @@ before_script:
318
318
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
319
319
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
320
320
  - |-
321
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
321
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
322
+ COPY --chown=node:node $APP_DIR .
322
323
  RUN yarn plugin import workspace-tools
323
324
  RUN yarn workspaces focus --production && yarn rebuild"
324
325
  - |-
@@ -577,7 +578,7 @@ before_script:
577
578
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
578
579
  - collapseable_section_end "nodeinstall"
579
580
  - collapseable_section_start "yarninstall" "Yarn install"
580
- - yarn install --immutable
581
+ - yarn install --immutable --inline-builds
581
582
  - collapseable_section_end "yarninstall"
582
583
  - yarn lint
583
584
  cache:
@@ -621,7 +622,7 @@ before_script:
621
622
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
622
623
  - collapseable_section_end "nodeinstall"
623
624
  - collapseable_section_start "yarninstall" "Yarn install"
624
- - yarn install --immutable
625
+ - yarn install --immutable --inline-builds
625
626
  - collapseable_section_end "yarninstall"
626
627
  - yarn test
627
628
  cache:
@@ -699,7 +700,7 @@ before_script:
699
700
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
700
701
  - collapseable_section_end "nodeinstall"
701
702
  - collapseable_section_start "yarninstall" "Yarn install"
702
- - yarn install --immutable
703
+ - yarn install --immutable --inline-builds
703
704
  - collapseable_section_end "yarninstall"
704
705
  - yarn build
705
706
  cache:
@@ -758,7 +759,8 @@ before_script:
758
759
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
759
760
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
760
761
  - |-
761
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
762
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
763
+ COPY --chown=node:node $APP_DIR .
762
764
  RUN yarn plugin import workspace-tools
763
765
  RUN yarn workspaces focus --production && yarn rebuild"
764
766
  - |-
@@ -1038,7 +1040,7 @@ before_script:
1038
1040
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1039
1041
  - collapseable_section_end "nodeinstall"
1040
1042
  - collapseable_section_start "yarninstall" "Yarn install"
1041
- - yarn install --immutable
1043
+ - yarn install --immutable --inline-builds
1042
1044
  - collapseable_section_end "yarninstall"
1043
1045
  - yarn build
1044
1046
  cache:
@@ -1093,7 +1095,8 @@ before_script:
1093
1095
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1094
1096
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1095
1097
  - |-
1096
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1098
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1099
+ COPY --chown=node:node $APP_DIR .
1097
1100
  RUN yarn plugin import workspace-tools
1098
1101
  RUN yarn workspaces focus --production && yarn rebuild"
1099
1102
  - |-
@@ -1358,7 +1361,7 @@ before_script:
1358
1361
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1359
1362
  - collapseable_section_end "nodeinstall"
1360
1363
  - collapseable_section_start "yarninstall" "Yarn install"
1361
- - yarn install --immutable
1364
+ - yarn install --immutable --inline-builds
1362
1365
  - collapseable_section_end "yarninstall"
1363
1366
  - yarn build
1364
1367
  cache:
@@ -1413,7 +1416,8 @@ before_script:
1413
1416
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1414
1417
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1415
1418
  - |-
1416
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1419
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1420
+ COPY --chown=node:node $APP_DIR .
1417
1421
  RUN yarn plugin import workspace-tools
1418
1422
  RUN yarn workspaces focus --production && yarn rebuild"
1419
1423
  - |-
@@ -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:
@@ -263,7 +263,7 @@ before_script:
263
263
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
264
264
  - collapseable_section_end "nodeinstall"
265
265
  - collapseable_section_start "yarninstall" "Yarn install"
266
- - yarn install --immutable
266
+ - yarn install --immutable --inline-builds
267
267
  - collapseable_section_end "yarninstall"
268
268
  - yarn build
269
269
  cache:
@@ -318,7 +318,8 @@ before_script:
318
318
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
319
319
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
320
320
  - |-
321
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
321
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
322
+ COPY --chown=node:node $APP_DIR .
322
323
  RUN yarn plugin import workspace-tools
323
324
  RUN yarn workspaces focus --production && yarn rebuild"
324
325
  - |-
@@ -577,7 +578,7 @@ before_script:
577
578
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
578
579
  - collapseable_section_end "nodeinstall"
579
580
  - collapseable_section_start "yarninstall" "Yarn install"
580
- - yarn install --immutable
581
+ - yarn install --immutable --inline-builds
581
582
  - collapseable_section_end "yarninstall"
582
583
  - yarn lint
583
584
  cache:
@@ -621,7 +622,7 @@ before_script:
621
622
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
622
623
  - collapseable_section_end "nodeinstall"
623
624
  - collapseable_section_start "yarninstall" "Yarn install"
624
- - yarn install --immutable
625
+ - yarn install --immutable --inline-builds
625
626
  - collapseable_section_end "yarninstall"
626
627
  - yarn test
627
628
  cache:
@@ -699,7 +700,7 @@ before_script:
699
700
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
700
701
  - collapseable_section_end "nodeinstall"
701
702
  - collapseable_section_start "yarninstall" "Yarn install"
702
- - yarn install --immutable
703
+ - yarn install --immutable --inline-builds
703
704
  - collapseable_section_end "yarninstall"
704
705
  - yarn build
705
706
  cache:
@@ -758,7 +759,8 @@ before_script:
758
759
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
759
760
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
760
761
  - |-
761
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
762
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
763
+ COPY --chown=node:node $APP_DIR .
762
764
  RUN yarn plugin import workspace-tools
763
765
  RUN yarn workspaces focus --production && yarn rebuild"
764
766
  - |-
@@ -1038,7 +1040,7 @@ before_script:
1038
1040
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1039
1041
  - collapseable_section_end "nodeinstall"
1040
1042
  - collapseable_section_start "yarninstall" "Yarn install"
1041
- - yarn install --immutable
1043
+ - yarn install --immutable --inline-builds
1042
1044
  - collapseable_section_end "yarninstall"
1043
1045
  - yarn build
1044
1046
  cache:
@@ -1093,7 +1095,8 @@ before_script:
1093
1095
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1094
1096
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1095
1097
  - |-
1096
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1098
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1099
+ COPY --chown=node:node $APP_DIR .
1097
1100
  RUN yarn plugin import workspace-tools
1098
1101
  RUN yarn workspaces focus --production && yarn rebuild"
1099
1102
  - |-
@@ -1358,7 +1361,7 @@ before_script:
1358
1361
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1359
1362
  - collapseable_section_end "nodeinstall"
1360
1363
  - collapseable_section_start "yarninstall" "Yarn install"
1361
- - yarn install --immutable
1364
+ - yarn install --immutable --inline-builds
1362
1365
  - collapseable_section_end "yarninstall"
1363
1366
  - yarn build
1364
1367
  cache:
@@ -1413,7 +1416,8 @@ before_script:
1413
1416
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1414
1417
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1415
1418
  - |-
1416
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1419
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1420
+ COPY --chown=node:node $APP_DIR .
1417
1421
  RUN yarn plugin import workspace-tools
1418
1422
  RUN yarn workspaces focus --production && yarn rebuild"
1419
1423
  - |-
@@ -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
  - |-
@@ -560,7 +561,7 @@ before_script:
560
561
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
561
562
  - collapseable_section_end "nodeinstall"
562
563
  - collapseable_section_start "yarninstall" "Yarn install"
563
- - yarn install --immutable
564
+ - yarn install --immutable --inline-builds
564
565
  - collapseable_section_end "yarninstall"
565
566
  - yarn lint
566
567
  cache:
@@ -604,7 +605,7 @@ before_script:
604
605
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
605
606
  - collapseable_section_end "nodeinstall"
606
607
  - collapseable_section_start "yarninstall" "Yarn install"
607
- - yarn install --immutable
608
+ - yarn install --immutable --inline-builds
608
609
  - collapseable_section_end "yarninstall"
609
610
  - yarn test
610
611
  cache:
@@ -680,7 +681,7 @@ before_script:
680
681
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
681
682
  - collapseable_section_end "nodeinstall"
682
683
  - collapseable_section_start "yarninstall" "Yarn install"
683
- - yarn install --immutable
684
+ - yarn install --immutable --inline-builds
684
685
  - collapseable_section_end "yarninstall"
685
686
  - yarn build
686
687
  cache:
@@ -739,7 +740,8 @@ before_script:
739
740
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
740
741
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
741
742
  - |-
742
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
743
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
744
+ COPY --chown=node:node $APP_DIR .
743
745
  RUN yarn plugin import workspace-tools
744
746
  RUN yarn workspaces focus --production && yarn rebuild"
745
747
  - |-
@@ -1002,7 +1004,7 @@ before_script:
1002
1004
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1003
1005
  - collapseable_section_end "nodeinstall"
1004
1006
  - collapseable_section_start "yarninstall" "Yarn install"
1005
- - yarn install --immutable
1007
+ - yarn install --immutable --inline-builds
1006
1008
  - collapseable_section_end "yarninstall"
1007
1009
  - yarn build
1008
1010
  cache:
@@ -1057,7 +1059,8 @@ before_script:
1057
1059
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1058
1060
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1059
1061
  - |-
1060
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1062
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1063
+ COPY --chown=node:node $APP_DIR .
1061
1064
  RUN yarn plugin import workspace-tools
1062
1065
  RUN yarn workspaces focus --production && yarn rebuild"
1063
1066
  - |-
@@ -1305,7 +1308,7 @@ before_script:
1305
1308
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1306
1309
  - collapseable_section_end "nodeinstall"
1307
1310
  - collapseable_section_start "yarninstall" "Yarn install"
1308
- - yarn install --immutable
1311
+ - yarn install --immutable --inline-builds
1309
1312
  - collapseable_section_end "yarninstall"
1310
1313
  - yarn build
1311
1314
  cache:
@@ -1360,7 +1363,8 @@ before_script:
1360
1363
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1361
1364
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1362
1365
  - |-
1363
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1366
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1367
+ COPY --chown=node:node $APP_DIR .
1364
1368
  RUN yarn plugin import workspace-tools
1365
1369
  RUN yarn workspaces focus --production && yarn rebuild"
1366
1370
  - |-
@@ -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
  - |-
@@ -560,7 +561,7 @@ before_script:
560
561
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
561
562
  - collapseable_section_end "nodeinstall"
562
563
  - collapseable_section_start "yarninstall" "Yarn install"
563
- - yarn install --immutable
564
+ - yarn install --immutable --inline-builds
564
565
  - collapseable_section_end "yarninstall"
565
566
  - yarn lint
566
567
  cache:
@@ -604,7 +605,7 @@ before_script:
604
605
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
605
606
  - collapseable_section_end "nodeinstall"
606
607
  - collapseable_section_start "yarninstall" "Yarn install"
607
- - yarn install --immutable
608
+ - yarn install --immutable --inline-builds
608
609
  - collapseable_section_end "yarninstall"
609
610
  - yarn test
610
611
  cache:
@@ -680,7 +681,7 @@ before_script:
680
681
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
681
682
  - collapseable_section_end "nodeinstall"
682
683
  - collapseable_section_start "yarninstall" "Yarn install"
683
- - yarn install --immutable
684
+ - yarn install --immutable --inline-builds
684
685
  - collapseable_section_end "yarninstall"
685
686
  - yarn build
686
687
  cache:
@@ -739,7 +740,8 @@ before_script:
739
740
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
740
741
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
741
742
  - |-
742
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
743
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
744
+ COPY --chown=node:node $APP_DIR .
743
745
  RUN yarn plugin import workspace-tools
744
746
  RUN yarn workspaces focus --production && yarn rebuild"
745
747
  - |-
@@ -1002,7 +1004,7 @@ before_script:
1002
1004
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1003
1005
  - collapseable_section_end "nodeinstall"
1004
1006
  - collapseable_section_start "yarninstall" "Yarn install"
1005
- - yarn install --immutable
1007
+ - yarn install --immutable --inline-builds
1006
1008
  - collapseable_section_end "yarninstall"
1007
1009
  - yarn build
1008
1010
  cache:
@@ -1057,7 +1059,8 @@ before_script:
1057
1059
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1058
1060
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1059
1061
  - |-
1060
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1062
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1063
+ COPY --chown=node:node $APP_DIR .
1061
1064
  RUN yarn plugin import workspace-tools
1062
1065
  RUN yarn workspaces focus --production && yarn rebuild"
1063
1066
  - |-
@@ -1305,7 +1308,7 @@ before_script:
1305
1308
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1306
1309
  - collapseable_section_end "nodeinstall"
1307
1310
  - collapseable_section_start "yarninstall" "Yarn install"
1308
- - yarn install --immutable
1311
+ - yarn install --immutable --inline-builds
1309
1312
  - collapseable_section_end "yarninstall"
1310
1313
  - yarn build
1311
1314
  cache:
@@ -1360,7 +1363,8 @@ before_script:
1360
1363
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1361
1364
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1362
1365
  - |-
1363
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1366
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1367
+ COPY --chown=node:node $APP_DIR .
1364
1368
  RUN yarn plugin import workspace-tools
1365
1369
  RUN yarn workspaces focus --production && yarn rebuild"
1366
1370
  - |-
@@ -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:
@@ -263,7 +263,7 @@ before_script:
263
263
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
264
264
  - collapseable_section_end "nodeinstall"
265
265
  - collapseable_section_start "yarninstall" "Yarn install"
266
- - yarn install --immutable
266
+ - yarn install --immutable --inline-builds
267
267
  - collapseable_section_end "yarninstall"
268
268
  - yarn build
269
269
  cache:
@@ -318,7 +318,8 @@ before_script:
318
318
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
319
319
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
320
320
  - |-
321
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
321
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
322
+ COPY --chown=node:node $APP_DIR .
322
323
  RUN yarn plugin import workspace-tools
323
324
  RUN yarn workspaces focus --production && yarn rebuild"
324
325
  - |-
@@ -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 lint
584
585
  cache:
@@ -622,7 +623,7 @@ before_script:
622
623
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
623
624
  - collapseable_section_end "nodeinstall"
624
625
  - collapseable_section_start "yarninstall" "Yarn install"
625
- - yarn install --immutable
626
+ - yarn install --immutable --inline-builds
626
627
  - collapseable_section_end "yarninstall"
627
628
  - yarn test
628
629
  cache:
@@ -700,7 +701,7 @@ before_script:
700
701
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
701
702
  - collapseable_section_end "nodeinstall"
702
703
  - collapseable_section_start "yarninstall" "Yarn install"
703
- - yarn install --immutable
704
+ - yarn install --immutable --inline-builds
704
705
  - collapseable_section_end "yarninstall"
705
706
  - yarn build
706
707
  cache:
@@ -759,7 +760,8 @@ before_script:
759
760
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
760
761
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
761
762
  - |-
762
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
763
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
764
+ COPY --chown=node:node $APP_DIR .
763
765
  RUN yarn plugin import workspace-tools
764
766
  RUN yarn workspaces focus --production && yarn rebuild"
765
767
  - |-
@@ -1040,7 +1042,7 @@ before_script:
1040
1042
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1041
1043
  - collapseable_section_end "nodeinstall"
1042
1044
  - collapseable_section_start "yarninstall" "Yarn install"
1043
- - yarn install --immutable
1045
+ - yarn install --immutable --inline-builds
1044
1046
  - collapseable_section_end "yarninstall"
1045
1047
  - yarn build
1046
1048
  cache:
@@ -1095,7 +1097,8 @@ before_script:
1095
1097
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1096
1098
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1097
1099
  - |-
1098
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1100
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1101
+ COPY --chown=node:node $APP_DIR .
1099
1102
  RUN yarn plugin import workspace-tools
1100
1103
  RUN yarn workspaces focus --production && yarn rebuild"
1101
1104
  - |-
@@ -1361,7 +1364,7 @@ before_script:
1361
1364
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1362
1365
  - collapseable_section_end "nodeinstall"
1363
1366
  - collapseable_section_start "yarninstall" "Yarn install"
1364
- - yarn install --immutable
1367
+ - yarn install --immutable --inline-builds
1365
1368
  - collapseable_section_end "yarninstall"
1366
1369
  - yarn build
1367
1370
  cache:
@@ -1416,7 +1419,8 @@ before_script:
1416
1419
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1417
1420
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1418
1421
  - |-
1419
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1422
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1423
+ COPY --chown=node:node $APP_DIR .
1420
1424
  RUN yarn plugin import workspace-tools
1421
1425
  RUN yarn workspaces focus --production && yarn rebuild"
1422
1426
  - |-
@@ -156,7 +156,7 @@ before_script:
156
156
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
157
157
  - collapseable_section_end "nodeinstall"
158
158
  - collapseable_section_start "yarninstall" "Yarn install"
159
- - yarn install --immutable
159
+ - yarn install --immutable --inline-builds
160
160
  - collapseable_section_end "yarninstall"
161
161
  - yarn build-storybook --quiet -o ./dist
162
162
  cache:
@@ -215,7 +215,8 @@ before_script:
215
215
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/api"
216
216
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
217
217
  - |-
218
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
218
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
219
+ COPY --chown=node:node $APP_DIR .
219
220
  RUN yarn plugin import workspace-tools
220
221
  RUN yarn workspaces focus --production && yarn rebuild"
221
222
  - |-
@@ -464,7 +465,7 @@ before_script:
464
465
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
465
466
  - collapseable_section_end "nodeinstall"
466
467
  - collapseable_section_start "yarninstall" "Yarn install"
467
- - yarn install --immutable
468
+ - yarn install --immutable --inline-builds
468
469
  - collapseable_section_end "yarninstall"
469
470
  - yarn build-storybook --quiet -o ./dist
470
471
  cache:
@@ -523,7 +524,8 @@ before_script:
523
524
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/api"
524
525
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
525
526
  - |-
526
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
527
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
528
+ COPY --chown=node:node $APP_DIR .
527
529
  RUN yarn plugin import workspace-tools
528
530
  RUN yarn workspaces focus --production && yarn rebuild"
529
531
  - |-
@@ -780,7 +782,7 @@ before_script:
780
782
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
781
783
  - collapseable_section_end "nodeinstall"
782
784
  - collapseable_section_start "yarninstall" "Yarn install"
783
- - yarn install --immutable
785
+ - yarn install --immutable --inline-builds
784
786
  - collapseable_section_end "yarninstall"
785
787
  - yarn build-storybook --quiet -o ./dist
786
788
  cache:
@@ -835,7 +837,8 @@ before_script:
835
837
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/api"
836
838
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
837
839
  - |-
838
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
840
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
841
+ COPY --chown=node:node $APP_DIR .
839
842
  RUN yarn plugin import workspace-tools
840
843
  RUN yarn workspaces focus --production && yarn rebuild"
841
844
  - |-
@@ -1083,7 +1086,7 @@ before_script:
1083
1086
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1084
1087
  - collapseable_section_end "nodeinstall"
1085
1088
  - collapseable_section_start "yarninstall" "Yarn install"
1086
- - yarn install --immutable
1089
+ - yarn install --immutable --inline-builds
1087
1090
  - collapseable_section_end "yarninstall"
1088
1091
  - yarn build-storybook --quiet -o ./dist
1089
1092
  cache:
@@ -1138,7 +1141,8 @@ before_script:
1138
1141
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/api"
1139
1142
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1140
1143
  - |-
1141
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1144
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1145
+ COPY --chown=node:node $APP_DIR .
1142
1146
  RUN yarn plugin import workspace-tools
1143
1147
  RUN yarn workspaces focus --production && yarn rebuild"
1144
1148
  - |-