@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:
@@ -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
  - echo "add healthcheck package"
268
268
  - meteor add panter:healthroute --allow-superuser
@@ -559,7 +559,7 @@ before_script:
559
559
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
560
560
  - collapseable_section_end "nodeinstall"
561
561
  - collapseable_section_start "yarninstall" "Yarn install"
562
- - yarn install --immutable
562
+ - yarn install --immutable --inline-builds
563
563
  - collapseable_section_end "yarninstall"
564
564
  - yarn lint
565
565
  cache:
@@ -603,7 +603,7 @@ before_script:
603
603
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
604
604
  - collapseable_section_end "nodeinstall"
605
605
  - collapseable_section_start "yarninstall" "Yarn install"
606
- - yarn install --immutable
606
+ - yarn install --immutable --inline-builds
607
607
  - collapseable_section_end "yarninstall"
608
608
  - yarn test
609
609
  cache:
@@ -680,7 +680,7 @@ before_script:
680
680
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
681
681
  - collapseable_section_end "nodeinstall"
682
682
  - collapseable_section_start "yarninstall" "Yarn install"
683
- - yarn install --immutable
683
+ - yarn install --immutable --inline-builds
684
684
  - collapseable_section_end "yarninstall"
685
685
  - echo "add healthcheck package"
686
686
  - meteor add panter:healthroute --allow-superuser
@@ -1001,7 +1001,7 @@ before_script:
1001
1001
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1002
1002
  - collapseable_section_end "nodeinstall"
1003
1003
  - collapseable_section_start "yarninstall" "Yarn install"
1004
- - yarn install --immutable
1004
+ - yarn install --immutable --inline-builds
1005
1005
  - collapseable_section_end "yarninstall"
1006
1006
  - echo "add healthcheck package"
1007
1007
  - meteor add panter:healthroute --allow-superuser
@@ -1303,7 +1303,7 @@ before_script:
1303
1303
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1304
1304
  - collapseable_section_end "nodeinstall"
1305
1305
  - collapseable_section_start "yarninstall" "Yarn install"
1306
- - yarn install --immutable
1306
+ - yarn install --immutable --inline-builds
1307
1307
  - collapseable_section_end "yarninstall"
1308
1308
  - echo "add healthcheck package"
1309
1309
  - meteor add panter:healthroute --allow-superuser
@@ -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:
@@ -320,7 +320,8 @@ before_script:
320
320
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
321
321
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
322
322
  - |-
323
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
323
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
324
+ COPY --chown=node:node $APP_DIR .
324
325
  RUN yarn plugin import workspace-tools
325
326
  RUN yarn workspaces focus --production && yarn rebuild"
326
327
  - |-
@@ -564,7 +565,7 @@ before_script:
564
565
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
565
566
  - collapseable_section_end "nodeinstall"
566
567
  - collapseable_section_start "yarninstall" "Yarn install"
567
- - yarn install --immutable
568
+ - yarn install --immutable --inline-builds
568
569
  - collapseable_section_end "yarninstall"
569
570
  - yarn lint
570
571
  cache:
@@ -608,7 +609,7 @@ before_script:
608
609
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
609
610
  - collapseable_section_end "nodeinstall"
610
611
  - collapseable_section_start "yarninstall" "Yarn install"
611
- - yarn install --immutable
612
+ - yarn install --immutable --inline-builds
612
613
  - collapseable_section_end "yarninstall"
613
614
  - yarn test
614
615
  cache:
@@ -684,7 +685,7 @@ before_script:
684
685
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
685
686
  - collapseable_section_end "nodeinstall"
686
687
  - collapseable_section_start "yarninstall" "Yarn install"
687
- - yarn install --immutable
688
+ - yarn install --immutable --inline-builds
688
689
  - collapseable_section_end "yarninstall"
689
690
  - yarn build
690
691
  cache:
@@ -749,7 +750,8 @@ before_script:
749
750
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
750
751
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
751
752
  - |-
752
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
753
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
754
+ COPY --chown=node:node $APP_DIR .
753
755
  RUN yarn plugin import workspace-tools
754
756
  RUN yarn workspaces focus --production && yarn rebuild"
755
757
  - |-
@@ -1012,7 +1014,7 @@ before_script:
1012
1014
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1013
1015
  - collapseable_section_end "nodeinstall"
1014
1016
  - collapseable_section_start "yarninstall" "Yarn install"
1015
- - yarn install --immutable
1017
+ - yarn install --immutable --inline-builds
1016
1018
  - collapseable_section_end "yarninstall"
1017
1019
  - yarn build
1018
1020
  cache:
@@ -1071,7 +1073,8 @@ before_script:
1071
1073
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
1072
1074
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1073
1075
  - |-
1074
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1076
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1077
+ COPY --chown=node:node $APP_DIR .
1075
1078
  RUN yarn plugin import workspace-tools
1076
1079
  RUN yarn workspaces focus --production && yarn rebuild"
1077
1080
  - |-
@@ -1319,7 +1322,7 @@ before_script:
1319
1322
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1320
1323
  - collapseable_section_end "nodeinstall"
1321
1324
  - collapseable_section_start "yarninstall" "Yarn install"
1322
- - yarn install --immutable
1325
+ - yarn install --immutable --inline-builds
1323
1326
  - collapseable_section_end "yarninstall"
1324
1327
  - yarn build
1325
1328
  cache:
@@ -1378,7 +1381,8 @@ before_script:
1378
1381
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
1379
1382
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1380
1383
  - |-
1381
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1384
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1385
+ COPY --chown=node:node $APP_DIR .
1382
1386
  RUN yarn plugin import workspace-tools
1383
1387
  RUN yarn workspaces focus --production && yarn rebuild"
1384
1388
  - |-
@@ -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="asia-east1-docker.pkg.dev/asdf/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
  - |-
@@ -587,7 +588,7 @@ before_script:
587
588
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
588
589
  - collapseable_section_end "nodeinstall"
589
590
  - collapseable_section_start "yarninstall" "Yarn install"
590
- - yarn install --immutable
591
+ - yarn install --immutable --inline-builds
591
592
  - collapseable_section_end "yarninstall"
592
593
  - yarn lint
593
594
  cache:
@@ -631,7 +632,7 @@ before_script:
631
632
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
632
633
  - collapseable_section_end "nodeinstall"
633
634
  - collapseable_section_start "yarninstall" "Yarn install"
634
- - yarn install --immutable
635
+ - yarn install --immutable --inline-builds
635
636
  - collapseable_section_end "yarninstall"
636
637
  - yarn test
637
638
  cache:
@@ -709,7 +710,7 @@ before_script:
709
710
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
710
711
  - collapseable_section_end "nodeinstall"
711
712
  - collapseable_section_start "yarninstall" "Yarn install"
712
- - yarn install --immutable
713
+ - yarn install --immutable --inline-builds
713
714
  - collapseable_section_end "yarninstall"
714
715
  - yarn build
715
716
  cache:
@@ -768,7 +769,8 @@ before_script:
768
769
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/api"
769
770
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
770
771
  - |-
771
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
772
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
773
+ COPY --chown=node:node $APP_DIR .
772
774
  RUN yarn plugin import workspace-tools
773
775
  RUN yarn workspaces focus --production && yarn rebuild"
774
776
  - |-
@@ -1058,7 +1060,7 @@ before_script:
1058
1060
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1059
1061
  - collapseable_section_end "nodeinstall"
1060
1062
  - collapseable_section_start "yarninstall" "Yarn install"
1061
- - yarn install --immutable
1063
+ - yarn install --immutable --inline-builds
1062
1064
  - collapseable_section_end "yarninstall"
1063
1065
  - yarn build
1064
1066
  cache:
@@ -1113,7 +1115,8 @@ before_script:
1113
1115
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/api"
1114
1116
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1115
1117
  - |-
1116
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1118
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1119
+ COPY --chown=node:node $APP_DIR .
1117
1120
  RUN yarn plugin import workspace-tools
1118
1121
  RUN yarn workspaces focus --production && yarn rebuild"
1119
1122
  - |-
@@ -1388,7 +1391,7 @@ before_script:
1388
1391
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1389
1392
  - collapseable_section_end "nodeinstall"
1390
1393
  - collapseable_section_start "yarninstall" "Yarn install"
1391
- - yarn install --immutable
1394
+ - yarn install --immutable --inline-builds
1392
1395
  - collapseable_section_end "yarninstall"
1393
1396
  - yarn build
1394
1397
  cache:
@@ -1443,7 +1446,8 @@ before_script:
1443
1446
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/api"
1444
1447
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1445
1448
  - |-
1446
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1449
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1450
+ COPY --chown=node:node $APP_DIR .
1447
1451
  RUN yarn plugin import workspace-tools
1448
1452
  RUN yarn workspaces focus --production && yarn rebuild"
1449
1453
  - |-
@@ -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/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="asia-east1-docker.pkg.dev/asdf/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="asia-east1-docker.pkg.dev/asdf/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="asia-east1-docker.pkg.dev/asdf/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:
@@ -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
  - |-
@@ -1020,7 +1022,7 @@ before_script:
1020
1022
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1021
1023
  - collapseable_section_end "nodeinstall"
1022
1024
  - collapseable_section_start "yarninstall" "Yarn install"
1023
- - yarn install --immutable
1025
+ - yarn install --immutable --inline-builds
1024
1026
  - collapseable_section_end "yarninstall"
1025
1027
  - yarn build
1026
1028
  cache:
@@ -1075,7 +1077,8 @@ before_script:
1075
1077
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1076
1078
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1077
1079
  - |-
1078
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1080
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1081
+ COPY --chown=node:node $APP_DIR .
1079
1082
  RUN yarn plugin import workspace-tools
1080
1083
  RUN yarn workspaces focus --production && yarn rebuild"
1081
1084
  - |-
@@ -1323,7 +1326,7 @@ before_script:
1323
1326
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1324
1327
  - collapseable_section_end "nodeinstall"
1325
1328
  - collapseable_section_start "yarninstall" "Yarn install"
1326
- - yarn install --immutable
1329
+ - yarn install --immutable --inline-builds
1327
1330
  - collapseable_section_end "yarninstall"
1328
1331
  - yarn build
1329
1332
  cache:
@@ -1378,7 +1381,8 @@ before_script:
1378
1381
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1379
1382
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1380
1383
  - |-
1381
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1384
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1385
+ COPY --chown=node:node $APP_DIR .
1382
1386
  RUN yarn plugin import workspace-tools
1383
1387
  RUN yarn workspaces focus --production && yarn rebuild"
1384
1388
  - |-