@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="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
  - |-
@@ -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="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/www"
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="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/www"
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="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/www"
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:
@@ -318,7 +318,8 @@ before_script:
318
318
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/www"
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
  - |-
@@ -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:
@@ -743,7 +744,8 @@ before_script:
743
744
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/www"
744
745
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
745
746
  - |-
746
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
747
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
748
+ COPY --chown=node:node $APP_DIR .
747
749
  RUN yarn plugin import workspace-tools
748
750
  RUN yarn workspaces focus --production && yarn rebuild"
749
751
  - |-
@@ -1006,7 +1008,7 @@ before_script:
1006
1008
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1007
1009
  - collapseable_section_end "nodeinstall"
1008
1010
  - collapseable_section_start "yarninstall" "Yarn install"
1009
- - yarn install --immutable
1011
+ - yarn install --immutable --inline-builds
1010
1012
  - collapseable_section_end "yarninstall"
1011
1013
  - yarn build
1012
1014
  cache:
@@ -1063,7 +1065,8 @@ before_script:
1063
1065
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/www"
1064
1066
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1065
1067
  - |-
1066
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1068
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1069
+ COPY --chown=node:node $APP_DIR .
1067
1070
  RUN yarn plugin import workspace-tools
1068
1071
  RUN yarn workspaces focus --production && yarn rebuild"
1069
1072
  - |-
@@ -1311,7 +1314,7 @@ before_script:
1311
1314
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1312
1315
  - collapseable_section_end "nodeinstall"
1313
1316
  - collapseable_section_start "yarninstall" "Yarn install"
1314
- - yarn install --immutable
1317
+ - yarn install --immutable --inline-builds
1315
1318
  - collapseable_section_end "yarninstall"
1316
1319
  - yarn build
1317
1320
  cache:
@@ -1368,7 +1371,8 @@ before_script:
1368
1371
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/www"
1369
1372
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1370
1373
  - |-
1371
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1374
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1375
+ COPY --chown=node:node $APP_DIR .
1372
1376
  RUN yarn plugin import workspace-tools
1373
1377
  RUN yarn workspaces focus --production && yarn rebuild"
1374
1378
  - |-
@@ -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/my-project-id/catladder-deploy/pan-test-app/caches/my-app"
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
  - |-
@@ -565,7 +566,7 @@ before_script:
565
566
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
566
567
  - collapseable_section_end "nodeinstall"
567
568
  - collapseable_section_start "yarninstall" "Yarn install"
568
- - yarn install --immutable
569
+ - yarn install --immutable --inline-builds
569
570
  - collapseable_section_end "yarninstall"
570
571
  - yarn lint
571
572
  cache:
@@ -609,7 +610,7 @@ before_script:
609
610
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
610
611
  - collapseable_section_end "nodeinstall"
611
612
  - collapseable_section_start "yarninstall" "Yarn install"
612
- - yarn install --immutable
613
+ - yarn install --immutable --inline-builds
613
614
  - collapseable_section_end "yarninstall"
614
615
  - yarn test
615
616
  cache:
@@ -689,7 +690,7 @@ before_script:
689
690
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
690
691
  - collapseable_section_end "nodeinstall"
691
692
  - collapseable_section_start "yarninstall" "Yarn install"
692
- - yarn install --immutable
693
+ - yarn install --immutable --inline-builds
693
694
  - collapseable_section_end "yarninstall"
694
695
  - yarn build
695
696
  cache:
@@ -748,7 +749,8 @@ before_script:
748
749
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/my-project-id/catladder-deploy/pan-test-app/caches/my-app"
749
750
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
750
751
  - |-
751
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
752
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
753
+ COPY --chown=node:node $APP_DIR .
752
754
  RUN yarn plugin import workspace-tools
753
755
  RUN yarn workspaces focus --production && yarn rebuild"
754
756
  - |-
@@ -1019,7 +1021,7 @@ before_script:
1019
1021
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1020
1022
  - collapseable_section_end "nodeinstall"
1021
1023
  - collapseable_section_start "yarninstall" "Yarn install"
1022
- - yarn install --immutable
1024
+ - yarn install --immutable --inline-builds
1023
1025
  - collapseable_section_end "yarninstall"
1024
1026
  - yarn build
1025
1027
  cache:
@@ -1074,7 +1076,8 @@ before_script:
1074
1076
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/my-project-id/catladder-deploy/pan-test-app/caches/my-app"
1075
1077
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1076
1078
  - |-
1077
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1079
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1080
+ COPY --chown=node:node $APP_DIR .
1078
1081
  RUN yarn plugin import workspace-tools
1079
1082
  RUN yarn workspaces focus --production && yarn rebuild"
1080
1083
  - |-
@@ -1327,7 +1330,7 @@ before_script:
1327
1330
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1328
1331
  - collapseable_section_end "nodeinstall"
1329
1332
  - collapseable_section_start "yarninstall" "Yarn install"
1330
- - yarn install --immutable
1333
+ - yarn install --immutable --inline-builds
1331
1334
  - collapseable_section_end "yarninstall"
1332
1335
  - yarn build
1333
1336
  cache:
@@ -1382,7 +1385,8 @@ before_script:
1382
1385
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/my-project-id/catladder-deploy/pan-test-app/caches/my-app"
1383
1386
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1384
1387
  - |-
1385
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1388
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1389
+ COPY --chown=node:node $APP_DIR .
1386
1390
  RUN yarn plugin import workspace-tools
1387
1391
  RUN yarn workspaces focus --production && yarn rebuild"
1388
1392
  - |-
@@ -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:
@@ -271,7 +271,7 @@ before_script:
271
271
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
272
272
  - collapseable_section_end "nodeinstall"
273
273
  - collapseable_section_start "yarninstall" "Yarn install"
274
- - yarn install --immutable
274
+ - yarn install --immutable --inline-builds
275
275
  - collapseable_section_end "yarninstall"
276
276
  - yarn build
277
277
  cache:
@@ -326,7 +326,8 @@ before_script:
326
326
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app1"
327
327
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
328
328
  - |-
329
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
329
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
330
+ COPY --chown=node:node $APP_DIR .
330
331
  RUN yarn plugin import workspace-tools
331
332
  RUN yarn workspaces focus --production && yarn rebuild"
332
333
  - |-
@@ -585,7 +586,7 @@ before_script:
585
586
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
586
587
  - collapseable_section_end "nodeinstall"
587
588
  - collapseable_section_start "yarninstall" "Yarn install"
588
- - yarn install --immutable
589
+ - yarn install --immutable --inline-builds
589
590
  - collapseable_section_end "yarninstall"
590
591
  - yarn lint
591
592
  cache:
@@ -629,7 +630,7 @@ before_script:
629
630
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
630
631
  - collapseable_section_end "nodeinstall"
631
632
  - collapseable_section_start "yarninstall" "Yarn install"
632
- - yarn install --immutable
633
+ - yarn install --immutable --inline-builds
633
634
  - collapseable_section_end "yarninstall"
634
635
  - yarn test
635
636
  cache:
@@ -715,7 +716,7 @@ before_script:
715
716
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
716
717
  - collapseable_section_end "nodeinstall"
717
718
  - collapseable_section_start "yarninstall" "Yarn install"
718
- - yarn install --immutable
719
+ - yarn install --immutable --inline-builds
719
720
  - collapseable_section_end "yarninstall"
720
721
  - yarn build
721
722
  cache:
@@ -774,7 +775,8 @@ before_script:
774
775
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app1"
775
776
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
776
777
  - |-
777
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
778
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
779
+ COPY --chown=node:node $APP_DIR .
778
780
  RUN yarn plugin import workspace-tools
779
781
  RUN yarn workspaces focus --production && yarn rebuild"
780
782
  - |-
@@ -1062,7 +1064,7 @@ before_script:
1062
1064
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1063
1065
  - collapseable_section_end "nodeinstall"
1064
1066
  - collapseable_section_start "yarninstall" "Yarn install"
1065
- - yarn install --immutable
1067
+ - yarn install --immutable --inline-builds
1066
1068
  - collapseable_section_end "yarninstall"
1067
1069
  - yarn build
1068
1070
  cache:
@@ -1117,7 +1119,8 @@ before_script:
1117
1119
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app1"
1118
1120
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1119
1121
  - |-
1120
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1122
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1123
+ COPY --chown=node:node $APP_DIR .
1121
1124
  RUN yarn plugin import workspace-tools
1122
1125
  RUN yarn workspaces focus --production && yarn rebuild"
1123
1126
  - |-
@@ -1390,7 +1393,7 @@ before_script:
1390
1393
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1391
1394
  - collapseable_section_end "nodeinstall"
1392
1395
  - collapseable_section_start "yarninstall" "Yarn install"
1393
- - yarn install --immutable
1396
+ - yarn install --immutable --inline-builds
1394
1397
  - collapseable_section_end "yarninstall"
1395
1398
  - yarn build
1396
1399
  cache:
@@ -1445,7 +1448,8 @@ before_script:
1445
1448
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app1"
1446
1449
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1447
1450
  - |-
1448
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1451
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1452
+ COPY --chown=node:node $APP_DIR .
1449
1453
  RUN yarn plugin import workspace-tools
1450
1454
  RUN yarn workspaces focus --production && yarn rebuild"
1451
1455
  - |-
@@ -1697,7 +1701,7 @@ before_script:
1697
1701
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1698
1702
  - collapseable_section_end "nodeinstall"
1699
1703
  - collapseable_section_start "yarninstall" "Yarn install"
1700
- - yarn install --immutable
1704
+ - yarn install --immutable --inline-builds
1701
1705
  - collapseable_section_end "yarninstall"
1702
1706
  - yarn lint
1703
1707
  cache:
@@ -1737,7 +1741,7 @@ before_script:
1737
1741
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1738
1742
  - collapseable_section_end "nodeinstall"
1739
1743
  - collapseable_section_start "yarninstall" "Yarn install"
1740
- - yarn install --immutable
1744
+ - yarn install --immutable --inline-builds
1741
1745
  - collapseable_section_end "yarninstall"
1742
1746
  - yarn test
1743
1747
  cache:
@@ -1823,7 +1827,7 @@ before_script:
1823
1827
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1824
1828
  - collapseable_section_end "nodeinstall"
1825
1829
  - collapseable_section_start "yarninstall" "Yarn install"
1826
- - yarn install --immutable
1830
+ - yarn install --immutable --inline-builds
1827
1831
  - collapseable_section_end "yarninstall"
1828
1832
  - yarn build
1829
1833
  cache:
@@ -1878,7 +1882,8 @@ before_script:
1878
1882
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app2"
1879
1883
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1880
1884
  - |-
1881
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1885
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1886
+ COPY --chown=node:node $APP_DIR .
1882
1887
  RUN yarn plugin import workspace-tools
1883
1888
  RUN yarn workspaces focus --production && yarn rebuild"
1884
1889
  - |-
@@ -2143,7 +2148,7 @@ before_script:
2143
2148
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2144
2149
  - collapseable_section_end "nodeinstall"
2145
2150
  - collapseable_section_start "yarninstall" "Yarn install"
2146
- - yarn install --immutable
2151
+ - yarn install --immutable --inline-builds
2147
2152
  - collapseable_section_end "yarninstall"
2148
2153
  - yarn lint
2149
2154
  cache:
@@ -2187,7 +2192,7 @@ before_script:
2187
2192
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2188
2193
  - collapseable_section_end "nodeinstall"
2189
2194
  - collapseable_section_start "yarninstall" "Yarn install"
2190
- - yarn install --immutable
2195
+ - yarn install --immutable --inline-builds
2191
2196
  - collapseable_section_end "yarninstall"
2192
2197
  - yarn test
2193
2198
  cache:
@@ -2277,7 +2282,7 @@ before_script:
2277
2282
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2278
2283
  - collapseable_section_end "nodeinstall"
2279
2284
  - collapseable_section_start "yarninstall" "Yarn install"
2280
- - yarn install --immutable
2285
+ - yarn install --immutable --inline-builds
2281
2286
  - collapseable_section_end "yarninstall"
2282
2287
  - yarn build
2283
2288
  cache:
@@ -2336,7 +2341,8 @@ before_script:
2336
2341
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app2"
2337
2342
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
2338
2343
  - |-
2339
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
2344
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
2345
+ COPY --chown=node:node $APP_DIR .
2340
2346
  RUN yarn plugin import workspace-tools
2341
2347
  RUN yarn workspaces focus --production && yarn rebuild"
2342
2348
  - |-
@@ -2634,7 +2640,7 @@ before_script:
2634
2640
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2635
2641
  - collapseable_section_end "nodeinstall"
2636
2642
  - collapseable_section_start "yarninstall" "Yarn install"
2637
- - yarn install --immutable
2643
+ - yarn install --immutable --inline-builds
2638
2644
  - collapseable_section_end "yarninstall"
2639
2645
  - yarn build
2640
2646
  cache:
@@ -2689,7 +2695,8 @@ before_script:
2689
2695
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app2"
2690
2696
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
2691
2697
  - |-
2692
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
2698
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
2699
+ COPY --chown=node:node $APP_DIR .
2693
2700
  RUN yarn plugin import workspace-tools
2694
2701
  RUN yarn workspaces focus --production && yarn rebuild"
2695
2702
  - |-
@@ -2972,7 +2979,7 @@ before_script:
2972
2979
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2973
2980
  - collapseable_section_end "nodeinstall"
2974
2981
  - collapseable_section_start "yarninstall" "Yarn install"
2975
- - yarn install --immutable
2982
+ - yarn install --immutable --inline-builds
2976
2983
  - collapseable_section_end "yarninstall"
2977
2984
  - yarn build
2978
2985
  cache:
@@ -3027,7 +3034,8 @@ before_script:
3027
3034
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app2"
3028
3035
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
3029
3036
  - |-
3030
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
3037
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
3038
+ COPY --chown=node:node $APP_DIR .
3031
3039
  RUN yarn plugin import workspace-tools
3032
3040
  RUN yarn workspaces focus --production && yarn rebuild"
3033
3041
  - |-
@@ -3285,7 +3293,7 @@ before_script:
3285
3293
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
3286
3294
  - collapseable_section_end "nodeinstall"
3287
3295
  - collapseable_section_start "yarninstall" "Yarn install"
3288
- - yarn install --immutable
3296
+ - yarn install --immutable --inline-builds
3289
3297
  - collapseable_section_end "yarninstall"
3290
3298
  - yarn lint
3291
3299
  cache:
@@ -3325,7 +3333,7 @@ before_script:
3325
3333
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
3326
3334
  - collapseable_section_end "nodeinstall"
3327
3335
  - collapseable_section_start "yarninstall" "Yarn install"
3328
- - yarn install --immutable
3336
+ - yarn install --immutable --inline-builds
3329
3337
  - collapseable_section_end "yarninstall"
3330
3338
  - yarn test
3331
3339
  cache:
@@ -3405,7 +3413,7 @@ before_script:
3405
3413
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
3406
3414
  - collapseable_section_end "nodeinstall"
3407
3415
  - collapseable_section_start "yarninstall" "Yarn install"
3408
- - yarn install --immutable
3416
+ - yarn install --immutable --inline-builds
3409
3417
  - collapseable_section_end "yarninstall"
3410
3418
  - yarn build
3411
3419
  cache:
@@ -3461,7 +3469,8 @@ before_script:
3461
3469
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
3462
3470
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
3463
3471
  - |-
3464
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
3472
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
3473
+ COPY --chown=node:node $APP_DIR .
3465
3474
  RUN yarn plugin import workspace-tools
3466
3475
  RUN yarn workspaces focus --production && yarn rebuild"
3467
3476
  - |-
@@ -3811,7 +3820,7 @@ before_script:
3811
3820
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
3812
3821
  - collapseable_section_end "nodeinstall"
3813
3822
  - collapseable_section_start "yarninstall" "Yarn install"
3814
- - yarn install --immutable
3823
+ - yarn install --immutable --inline-builds
3815
3824
  - collapseable_section_end "yarninstall"
3816
3825
  - yarn lint
3817
3826
  cache:
@@ -3855,7 +3864,7 @@ before_script:
3855
3864
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
3856
3865
  - collapseable_section_end "nodeinstall"
3857
3866
  - collapseable_section_start "yarninstall" "Yarn install"
3858
- - yarn install --immutable
3867
+ - yarn install --immutable --inline-builds
3859
3868
  - collapseable_section_end "yarninstall"
3860
3869
  - yarn test
3861
3870
  cache:
@@ -3939,7 +3948,7 @@ before_script:
3939
3948
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
3940
3949
  - collapseable_section_end "nodeinstall"
3941
3950
  - collapseable_section_start "yarninstall" "Yarn install"
3942
- - yarn install --immutable
3951
+ - yarn install --immutable --inline-builds
3943
3952
  - collapseable_section_end "yarninstall"
3944
3953
  - yarn build
3945
3954
  cache:
@@ -3999,7 +4008,8 @@ before_script:
3999
4008
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
4000
4009
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
4001
4010
  - |-
4002
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
4011
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
4012
+ COPY --chown=node:node $APP_DIR .
4003
4013
  RUN yarn plugin import workspace-tools
4004
4014
  RUN yarn workspaces focus --production && yarn rebuild"
4005
4015
  - |-
@@ -4371,7 +4381,7 @@ before_script:
4371
4381
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
4372
4382
  - collapseable_section_end "nodeinstall"
4373
4383
  - collapseable_section_start "yarninstall" "Yarn install"
4374
- - yarn install --immutable
4384
+ - yarn install --immutable --inline-builds
4375
4385
  - collapseable_section_end "yarninstall"
4376
4386
  - yarn build
4377
4387
  cache:
@@ -4427,7 +4437,8 @@ before_script:
4427
4437
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
4428
4438
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
4429
4439
  - |-
4430
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
4440
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
4441
+ COPY --chown=node:node $APP_DIR .
4431
4442
  RUN yarn plugin import workspace-tools
4432
4443
  RUN yarn workspaces focus --production && yarn rebuild"
4433
4444
  - |-
@@ -4789,7 +4800,7 @@ before_script:
4789
4800
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
4790
4801
  - collapseable_section_end "nodeinstall"
4791
4802
  - collapseable_section_start "yarninstall" "Yarn install"
4792
- - yarn install --immutable
4803
+ - yarn install --immutable --inline-builds
4793
4804
  - collapseable_section_end "yarninstall"
4794
4805
  - yarn build
4795
4806
  cache:
@@ -4845,7 +4856,8 @@ before_script:
4845
4856
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
4846
4857
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
4847
4858
  - |-
4848
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
4859
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
4860
+ COPY --chown=node:node $APP_DIR .
4849
4861
  RUN yarn plugin import workspace-tools
4850
4862
  RUN yarn workspaces focus --production && yarn rebuild"
4851
4863
  - |-