@catladder/pipeline 3.34.1 → 3.34.2

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/cache.js +6 -3
  2. package/dist/constants.js +1 -1
  3. package/dist/tsconfig.tsbuildinfo +1 -1
  4. package/examples/__snapshots__/automatic-releases.test.ts.snap +8 -0
  5. package/examples/__snapshots__/cloud-run-execute-script-on-deploy.test.ts.snap +8 -0
  6. package/examples/__snapshots__/cloud-run-health-check-defaults.test.ts.snap +8 -0
  7. package/examples/__snapshots__/cloud-run-health-check-only-startup.test.ts.snap +8 -0
  8. package/examples/__snapshots__/cloud-run-health-check.test.ts.snap +8 -0
  9. package/examples/__snapshots__/cloud-run-http2.test.ts.snap +8 -0
  10. package/examples/__snapshots__/cloud-run-memory-limit.test.ts.snap +8 -0
  11. package/examples/__snapshots__/cloud-run-meteor-with-worker.test.ts.snap +8 -0
  12. package/examples/__snapshots__/cloud-run-nextjs.test.ts.snap +8 -0
  13. package/examples/__snapshots__/cloud-run-no-cpu-throttling.test.ts.snap +8 -0
  14. package/examples/__snapshots__/cloud-run-no-service.test.ts.snap +8 -0
  15. package/examples/__snapshots__/cloud-run-non-public.test.ts.snap +8 -0
  16. package/examples/__snapshots__/cloud-run-post-stop-job.test.ts.snap +8 -0
  17. package/examples/__snapshots__/cloud-run-service-custom-vpc-connector.test.ts.snap +8 -0
  18. package/examples/__snapshots__/cloud-run-service-custom-vpc.test.ts.snap +8 -0
  19. package/examples/__snapshots__/cloud-run-service-gen2.test.ts.snap +8 -0
  20. package/examples/__snapshots__/cloud-run-service-increase-timout.test.ts.snap +8 -0
  21. package/examples/__snapshots__/cloud-run-service-with-volumes.test.ts.snap +8 -0
  22. package/examples/__snapshots__/cloud-run-storybook.test.ts.snap +4 -0
  23. package/examples/__snapshots__/cloud-run-with-agents.test.ts.snap +8 -0
  24. package/examples/__snapshots__/cloud-run-with-gpu.test.ts.snap +8 -0
  25. package/examples/__snapshots__/cloud-run-with-ngnix.test.ts.snap +8 -0
  26. package/examples/__snapshots__/cloud-run-with-sql-legacy-jobs.test.ts.snap +8 -0
  27. package/examples/__snapshots__/cloud-run-with-sql-multiple-dbs.test.ts.snap +24 -0
  28. package/examples/__snapshots__/cloud-run-with-sql-reuse-db.test.ts.snap +16 -0
  29. package/examples/__snapshots__/cloud-run-with-sql.test.ts.snap +8 -0
  30. package/examples/__snapshots__/cloud-run-with-worker.test.ts.snap +8 -0
  31. package/examples/__snapshots__/custom-deploy.test.ts.snap +8 -0
  32. package/examples/__snapshots__/custom-docker-file.test.ts.snap +8 -0
  33. package/examples/__snapshots__/custom-envs.test.ts.snap +14 -0
  34. package/examples/__snapshots__/custom-verify-job.test.ts.snap +8 -0
  35. package/examples/__snapshots__/git-submodule.test.ts.snap +8 -0
  36. package/examples/__snapshots__/kubernetes-application-customization.test.ts.snap +8 -0
  37. package/examples/__snapshots__/kubernetes-with-cloud-sql.test.ts.snap +8 -0
  38. package/examples/__snapshots__/kubernetes-with-jobs.test.ts.snap +16 -0
  39. package/examples/__snapshots__/kubernetes-with-mongodb.test.ts.snap +8 -0
  40. package/examples/__snapshots__/local-dot-env.test.ts.snap +8 -0
  41. package/examples/__snapshots__/meteor-kubernetes.test.ts.snap +8 -0
  42. package/examples/__snapshots__/modify-generated-files.test.ts.snap +8 -0
  43. package/examples/__snapshots__/modify-generated-yaml.test.ts.snap +8 -0
  44. package/examples/__snapshots__/multiline-var.test.ts.snap +24 -0
  45. package/examples/__snapshots__/native-app.test.ts.snap +16 -0
  46. package/examples/__snapshots__/node-build-with-custom-image.test.ts.snap +8 -0
  47. package/examples/__snapshots__/node-build-with-docker-additions.test.ts.snap +8 -0
  48. package/examples/__snapshots__/override-secrets.test.ts.snap +8 -0
  49. package/examples/__snapshots__/referencing-other-vars.test.ts.snap +24 -0
  50. package/examples/__snapshots__/wait-for-other-deploy.test.ts.snap +16 -0
  51. package/examples/__snapshots__/workspace-api-www-turbo-cache.test.ts.snap +8 -0
  52. package/examples/__snapshots__/workspace-api-www.test.ts.snap +8 -0
  53. package/package.json +1 -1
  54. package/src/build/node/cache.ts +16 -1
@@ -158,6 +158,7 @@ before_script:
158
158
  policy: pull-push
159
159
  paths:
160
160
  - api/node_modules
161
+ - api/.yarn/install-state.gz
161
162
  rules:
162
163
  - when: never
163
164
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -198,6 +199,7 @@ before_script:
198
199
  policy: pull-push
199
200
  paths:
200
201
  - api/node_modules
202
+ - api/.yarn/install-state.gz
201
203
  rules:
202
204
  - when: never
203
205
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -270,6 +272,7 @@ before_script:
270
272
  policy: pull-push
271
273
  paths:
272
274
  - api/node_modules
275
+ - api/.yarn/install-state.gz
273
276
  artifacts:
274
277
  paths:
275
278
  - api/__build_info.json
@@ -573,6 +576,7 @@ before_script:
573
576
  policy: pull-push
574
577
  paths:
575
578
  - api/node_modules
579
+ - api/.yarn/install-state.gz
576
580
  fallback_keys:
577
581
  - api-node-modules
578
582
  rules:
@@ -617,6 +621,7 @@ before_script:
617
621
  policy: pull-push
618
622
  paths:
619
623
  - api/node_modules
624
+ - api/.yarn/install-state.gz
620
625
  fallback_keys:
621
626
  - api-node-modules
622
627
  rules:
@@ -695,6 +700,7 @@ before_script:
695
700
  policy: pull-push
696
701
  paths:
697
702
  - api/node_modules
703
+ - api/.yarn/install-state.gz
698
704
  fallback_keys:
699
705
  - api-node-modules
700
706
  artifacts:
@@ -1033,6 +1039,7 @@ before_script:
1033
1039
  policy: pull-push
1034
1040
  paths:
1035
1041
  - api/node_modules
1042
+ - api/.yarn/install-state.gz
1036
1043
  artifacts:
1037
1044
  paths:
1038
1045
  - api/__build_info.json
@@ -1338,6 +1345,7 @@ before_script:
1338
1345
  policy: pull-push
1339
1346
  paths:
1340
1347
  - api/node_modules
1348
+ - api/.yarn/install-state.gz
1341
1349
  artifacts:
1342
1350
  paths:
1343
1351
  - api/__build_info.json
@@ -158,6 +158,7 @@ before_script:
158
158
  policy: pull-push
159
159
  paths:
160
160
  - api/node_modules
161
+ - api/.yarn/install-state.gz
161
162
  rules:
162
163
  - when: never
163
164
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -198,6 +199,7 @@ before_script:
198
199
  policy: pull-push
199
200
  paths:
200
201
  - api/node_modules
202
+ - api/.yarn/install-state.gz
201
203
  rules:
202
204
  - when: never
203
205
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -272,6 +274,7 @@ before_script:
272
274
  policy: pull-push
273
275
  paths:
274
276
  - api/node_modules
277
+ - api/.yarn/install-state.gz
275
278
  artifacts:
276
279
  paths:
277
280
  - api/__build_info.json
@@ -590,6 +593,7 @@ before_script:
590
593
  policy: pull-push
591
594
  paths:
592
595
  - api/node_modules
596
+ - api/.yarn/install-state.gz
593
597
  fallback_keys:
594
598
  - api-node-modules
595
599
  rules:
@@ -634,6 +638,7 @@ before_script:
634
638
  policy: pull-push
635
639
  paths:
636
640
  - api/node_modules
641
+ - api/.yarn/install-state.gz
637
642
  fallback_keys:
638
643
  - api-node-modules
639
644
  rules:
@@ -712,6 +717,7 @@ before_script:
712
717
  policy: pull-push
713
718
  paths:
714
719
  - api/node_modules
720
+ - api/.yarn/install-state.gz
715
721
  fallback_keys:
716
722
  - api-node-modules
717
723
  artifacts:
@@ -1051,6 +1057,7 @@ before_script:
1051
1057
  policy: pull-push
1052
1058
  paths:
1053
1059
  - api/node_modules
1060
+ - api/.yarn/install-state.gz
1054
1061
  artifacts:
1055
1062
  paths:
1056
1063
  - api/__build_info.json
@@ -1373,6 +1380,7 @@ before_script:
1373
1380
  policy: pull-push
1374
1381
  paths:
1375
1382
  - api/node_modules
1383
+ - api/.yarn/install-state.gz
1376
1384
  artifacts:
1377
1385
  paths:
1378
1386
  - api/__build_info.json
@@ -158,6 +158,7 @@ before_script:
158
158
  policy: pull-push
159
159
  paths:
160
160
  - api/node_modules
161
+ - api/.yarn/install-state.gz
161
162
  rules:
162
163
  - when: never
163
164
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -198,6 +199,7 @@ before_script:
198
199
  policy: pull-push
199
200
  paths:
200
201
  - api/node_modules
202
+ - api/.yarn/install-state.gz
201
203
  rules:
202
204
  - when: never
203
205
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -272,6 +274,7 @@ before_script:
272
274
  policy: pull-push
273
275
  paths:
274
276
  - api/node_modules
277
+ - api/.yarn/install-state.gz
275
278
  artifacts:
276
279
  paths:
277
280
  - api/__build_info.json
@@ -590,6 +593,7 @@ before_script:
590
593
  policy: pull-push
591
594
  paths:
592
595
  - api/node_modules
596
+ - api/.yarn/install-state.gz
593
597
  fallback_keys:
594
598
  - api-node-modules
595
599
  rules:
@@ -634,6 +638,7 @@ before_script:
634
638
  policy: pull-push
635
639
  paths:
636
640
  - api/node_modules
641
+ - api/.yarn/install-state.gz
637
642
  fallback_keys:
638
643
  - api-node-modules
639
644
  rules:
@@ -712,6 +717,7 @@ before_script:
712
717
  policy: pull-push
713
718
  paths:
714
719
  - api/node_modules
720
+ - api/.yarn/install-state.gz
715
721
  fallback_keys:
716
722
  - api-node-modules
717
723
  artifacts:
@@ -1051,6 +1057,7 @@ before_script:
1051
1057
  policy: pull-push
1052
1058
  paths:
1053
1059
  - api/node_modules
1060
+ - api/.yarn/install-state.gz
1054
1061
  artifacts:
1055
1062
  paths:
1056
1063
  - api/__build_info.json
@@ -1373,6 +1380,7 @@ before_script:
1373
1380
  policy: pull-push
1374
1381
  paths:
1375
1382
  - api/node_modules
1383
+ - api/.yarn/install-state.gz
1376
1384
  artifacts:
1377
1385
  paths:
1378
1386
  - api/__build_info.json
@@ -158,6 +158,7 @@ before_script:
158
158
  policy: pull-push
159
159
  paths:
160
160
  - api/node_modules
161
+ - api/.yarn/install-state.gz
161
162
  rules:
162
163
  - when: never
163
164
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -198,6 +199,7 @@ before_script:
198
199
  policy: pull-push
199
200
  paths:
200
201
  - api/node_modules
202
+ - api/.yarn/install-state.gz
201
203
  rules:
202
204
  - when: never
203
205
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -270,6 +272,7 @@ before_script:
270
272
  policy: pull-push
271
273
  paths:
272
274
  - api/node_modules
275
+ - api/.yarn/install-state.gz
273
276
  artifacts:
274
277
  paths:
275
278
  - api/__build_info.json
@@ -573,6 +576,7 @@ before_script:
573
576
  policy: pull-push
574
577
  paths:
575
578
  - api/node_modules
579
+ - api/.yarn/install-state.gz
576
580
  fallback_keys:
577
581
  - api-node-modules
578
582
  rules:
@@ -617,6 +621,7 @@ before_script:
617
621
  policy: pull-push
618
622
  paths:
619
623
  - api/node_modules
624
+ - api/.yarn/install-state.gz
620
625
  fallback_keys:
621
626
  - api-node-modules
622
627
  rules:
@@ -693,6 +698,7 @@ before_script:
693
698
  policy: pull-push
694
699
  paths:
695
700
  - api/node_modules
701
+ - api/.yarn/install-state.gz
696
702
  fallback_keys:
697
703
  - api-node-modules
698
704
  artifacts:
@@ -1015,6 +1021,7 @@ before_script:
1015
1021
  policy: pull-push
1016
1022
  paths:
1017
1023
  - api/node_modules
1024
+ - api/.yarn/install-state.gz
1018
1025
  artifacts:
1019
1026
  paths:
1020
1027
  - api/__build_info.json
@@ -1320,6 +1327,7 @@ before_script:
1320
1327
  policy: pull-push
1321
1328
  paths:
1322
1329
  - api/node_modules
1330
+ - api/.yarn/install-state.gz
1323
1331
  artifacts:
1324
1332
  paths:
1325
1333
  - api/__build_info.json
@@ -158,6 +158,7 @@ before_script:
158
158
  policy: pull-push
159
159
  paths:
160
160
  - api/node_modules
161
+ - api/.yarn/install-state.gz
161
162
  rules:
162
163
  - when: never
163
164
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -198,6 +199,7 @@ before_script:
198
199
  policy: pull-push
199
200
  paths:
200
201
  - api/node_modules
202
+ - api/.yarn/install-state.gz
201
203
  rules:
202
204
  - when: never
203
205
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -270,6 +272,7 @@ before_script:
270
272
  policy: pull-push
271
273
  paths:
272
274
  - api/node_modules
275
+ - api/.yarn/install-state.gz
273
276
  artifacts:
274
277
  paths:
275
278
  - api/__build_info.json
@@ -573,6 +576,7 @@ before_script:
573
576
  policy: pull-push
574
577
  paths:
575
578
  - api/node_modules
579
+ - api/.yarn/install-state.gz
576
580
  fallback_keys:
577
581
  - api-node-modules
578
582
  rules:
@@ -617,6 +621,7 @@ before_script:
617
621
  policy: pull-push
618
622
  paths:
619
623
  - api/node_modules
624
+ - api/.yarn/install-state.gz
620
625
  fallback_keys:
621
626
  - api-node-modules
622
627
  rules:
@@ -693,6 +698,7 @@ before_script:
693
698
  policy: pull-push
694
699
  paths:
695
700
  - api/node_modules
701
+ - api/.yarn/install-state.gz
696
702
  fallback_keys:
697
703
  - api-node-modules
698
704
  artifacts:
@@ -1015,6 +1021,7 @@ before_script:
1015
1021
  policy: pull-push
1016
1022
  paths:
1017
1023
  - api/node_modules
1024
+ - api/.yarn/install-state.gz
1018
1025
  artifacts:
1019
1026
  paths:
1020
1027
  - api/__build_info.json
@@ -1320,6 +1327,7 @@ before_script:
1320
1327
  policy: pull-push
1321
1328
  paths:
1322
1329
  - api/node_modules
1330
+ - api/.yarn/install-state.gz
1323
1331
  artifacts:
1324
1332
  paths:
1325
1333
  - api/__build_info.json
@@ -158,6 +158,7 @@ before_script:
158
158
  policy: pull-push
159
159
  paths:
160
160
  - api/node_modules
161
+ - api/.yarn/install-state.gz
161
162
  rules:
162
163
  - when: never
163
164
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -198,6 +199,7 @@ before_script:
198
199
  policy: pull-push
199
200
  paths:
200
201
  - api/node_modules
202
+ - api/.yarn/install-state.gz
201
203
  rules:
202
204
  - when: never
203
205
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -272,6 +274,7 @@ before_script:
272
274
  policy: pull-push
273
275
  paths:
274
276
  - api/node_modules
277
+ - api/.yarn/install-state.gz
275
278
  artifacts:
276
279
  paths:
277
280
  - api/__build_info.json
@@ -591,6 +594,7 @@ before_script:
591
594
  policy: pull-push
592
595
  paths:
593
596
  - api/node_modules
597
+ - api/.yarn/install-state.gz
594
598
  fallback_keys:
595
599
  - api-node-modules
596
600
  rules:
@@ -635,6 +639,7 @@ before_script:
635
639
  policy: pull-push
636
640
  paths:
637
641
  - api/node_modules
642
+ - api/.yarn/install-state.gz
638
643
  fallback_keys:
639
644
  - api-node-modules
640
645
  rules:
@@ -713,6 +718,7 @@ before_script:
713
718
  policy: pull-push
714
719
  paths:
715
720
  - api/node_modules
721
+ - api/.yarn/install-state.gz
716
722
  fallback_keys:
717
723
  - api-node-modules
718
724
  artifacts:
@@ -1053,6 +1059,7 @@ before_script:
1053
1059
  policy: pull-push
1054
1060
  paths:
1055
1061
  - api/node_modules
1062
+ - api/.yarn/install-state.gz
1056
1063
  artifacts:
1057
1064
  paths:
1058
1065
  - api/__build_info.json
@@ -1376,6 +1383,7 @@ before_script:
1376
1383
  policy: pull-push
1377
1384
  paths:
1378
1385
  - api/node_modules
1386
+ - api/.yarn/install-state.gz
1379
1387
  artifacts:
1380
1388
  paths:
1381
1389
  - api/__build_info.json
@@ -168,6 +168,7 @@ before_script:
168
168
  policy: pull-push
169
169
  paths:
170
170
  - app/node_modules
171
+ - app/.yarn/install-state.gz
171
172
  artifacts:
172
173
  paths:
173
174
  - app/__build_info.json
@@ -477,6 +478,7 @@ before_script:
477
478
  policy: pull-push
478
479
  paths:
479
480
  - app/node_modules
481
+ - app/.yarn/install-state.gz
480
482
  fallback_keys:
481
483
  - app-node-modules
482
484
  artifacts:
@@ -793,6 +795,7 @@ before_script:
793
795
  policy: pull-push
794
796
  paths:
795
797
  - app/node_modules
798
+ - app/.yarn/install-state.gz
796
799
  artifacts:
797
800
  paths:
798
801
  - app/__build_info.json
@@ -1098,6 +1101,7 @@ before_script:
1098
1101
  policy: pull-push
1099
1102
  paths:
1100
1103
  - app/node_modules
1104
+ - app/.yarn/install-state.gz
1101
1105
  artifacts:
1102
1106
  paths:
1103
1107
  - app/__build_info.json
@@ -158,6 +158,7 @@ before_script:
158
158
  policy: pull-push
159
159
  paths:
160
160
  - www/node_modules
161
+ - www/.yarn/install-state.gz
161
162
  rules:
162
163
  - when: never
163
164
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -198,6 +199,7 @@ before_script:
198
199
  policy: pull-push
199
200
  paths:
200
201
  - www/node_modules
202
+ - www/.yarn/install-state.gz
201
203
  rules:
202
204
  - when: never
203
205
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -270,6 +272,7 @@ before_script:
270
272
  policy: pull-push
271
273
  paths:
272
274
  - www/node_modules
275
+ - www/.yarn/install-state.gz
273
276
  - key: www-default
274
277
  policy: pull-push
275
278
  paths:
@@ -577,6 +580,7 @@ before_script:
577
580
  policy: pull-push
578
581
  paths:
579
582
  - www/node_modules
583
+ - www/.yarn/install-state.gz
580
584
  fallback_keys:
581
585
  - www-node-modules
582
586
  rules:
@@ -621,6 +625,7 @@ before_script:
621
625
  policy: pull-push
622
626
  paths:
623
627
  - www/node_modules
628
+ - www/.yarn/install-state.gz
624
629
  fallback_keys:
625
630
  - www-node-modules
626
631
  rules:
@@ -697,6 +702,7 @@ before_script:
697
702
  policy: pull-push
698
703
  paths:
699
704
  - www/node_modules
705
+ - www/.yarn/install-state.gz
700
706
  fallback_keys:
701
707
  - www-node-modules
702
708
  - key: www-default-mr$CI_MERGE_REQUEST_IID
@@ -1025,6 +1031,7 @@ before_script:
1025
1031
  policy: pull-push
1026
1032
  paths:
1027
1033
  - www/node_modules
1034
+ - www/.yarn/install-state.gz
1028
1035
  - key: www-default
1029
1036
  policy: pull-push
1030
1037
  paths:
@@ -1334,6 +1341,7 @@ before_script:
1334
1341
  policy: pull-push
1335
1342
  paths:
1336
1343
  - www/node_modules
1344
+ - www/.yarn/install-state.gz
1337
1345
  - key: www-default
1338
1346
  policy: pull-push
1339
1347
  paths:
@@ -158,6 +158,7 @@ before_script:
158
158
  policy: pull-push
159
159
  paths:
160
160
  - api/node_modules
161
+ - api/.yarn/install-state.gz
161
162
  rules:
162
163
  - when: never
163
164
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -198,6 +199,7 @@ before_script:
198
199
  policy: pull-push
199
200
  paths:
200
201
  - api/node_modules
202
+ - api/.yarn/install-state.gz
201
203
  rules:
202
204
  - when: never
203
205
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -270,6 +272,7 @@ before_script:
270
272
  policy: pull-push
271
273
  paths:
272
274
  - api/node_modules
275
+ - api/.yarn/install-state.gz
273
276
  artifacts:
274
277
  paths:
275
278
  - api/__build_info.json
@@ -573,6 +576,7 @@ before_script:
573
576
  policy: pull-push
574
577
  paths:
575
578
  - api/node_modules
579
+ - api/.yarn/install-state.gz
576
580
  fallback_keys:
577
581
  - api-node-modules
578
582
  rules:
@@ -617,6 +621,7 @@ before_script:
617
621
  policy: pull-push
618
622
  paths:
619
623
  - api/node_modules
624
+ - api/.yarn/install-state.gz
620
625
  fallback_keys:
621
626
  - api-node-modules
622
627
  rules:
@@ -693,6 +698,7 @@ before_script:
693
698
  policy: pull-push
694
699
  paths:
695
700
  - api/node_modules
701
+ - api/.yarn/install-state.gz
696
702
  fallback_keys:
697
703
  - api-node-modules
698
704
  artifacts:
@@ -1015,6 +1021,7 @@ before_script:
1015
1021
  policy: pull-push
1016
1022
  paths:
1017
1023
  - api/node_modules
1024
+ - api/.yarn/install-state.gz
1018
1025
  artifacts:
1019
1026
  paths:
1020
1027
  - api/__build_info.json
@@ -1320,6 +1327,7 @@ before_script:
1320
1327
  policy: pull-push
1321
1328
  paths:
1322
1329
  - api/node_modules
1330
+ - api/.yarn/install-state.gz
1323
1331
  artifacts:
1324
1332
  paths:
1325
1333
  - api/__build_info.json
@@ -158,6 +158,7 @@ before_script:
158
158
  policy: pull-push
159
159
  paths:
160
160
  - app/node_modules
161
+ - app/.yarn/install-state.gz
161
162
  rules:
162
163
  - when: never
163
164
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -198,6 +199,7 @@ before_script:
198
199
  policy: pull-push
199
200
  paths:
200
201
  - app/node_modules
202
+ - app/.yarn/install-state.gz
201
203
  rules:
202
204
  - when: never
203
205
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -270,6 +272,7 @@ before_script:
270
272
  policy: pull-push
271
273
  paths:
272
274
  - app/node_modules
275
+ - app/.yarn/install-state.gz
273
276
  artifacts:
274
277
  paths:
275
278
  - app/__build_info.json
@@ -573,6 +576,7 @@ before_script:
573
576
  policy: pull-push
574
577
  paths:
575
578
  - app/node_modules
579
+ - app/.yarn/install-state.gz
576
580
  fallback_keys:
577
581
  - app-node-modules
578
582
  rules:
@@ -617,6 +621,7 @@ before_script:
617
621
  policy: pull-push
618
622
  paths:
619
623
  - app/node_modules
624
+ - app/.yarn/install-state.gz
620
625
  fallback_keys:
621
626
  - app-node-modules
622
627
  rules:
@@ -693,6 +698,7 @@ before_script:
693
698
  policy: pull-push
694
699
  paths:
695
700
  - app/node_modules
701
+ - app/.yarn/install-state.gz
696
702
  fallback_keys:
697
703
  - app-node-modules
698
704
  artifacts:
@@ -1015,6 +1021,7 @@ before_script:
1015
1021
  policy: pull-push
1016
1022
  paths:
1017
1023
  - app/node_modules
1024
+ - app/.yarn/install-state.gz
1018
1025
  artifacts:
1019
1026
  paths:
1020
1027
  - app/__build_info.json
@@ -1320,6 +1327,7 @@ before_script:
1320
1327
  policy: pull-push
1321
1328
  paths:
1322
1329
  - app/node_modules
1330
+ - app/.yarn/install-state.gz
1323
1331
  artifacts:
1324
1332
  paths:
1325
1333
  - app/__build_info.json
@@ -158,6 +158,7 @@ before_script:
158
158
  policy: pull-push
159
159
  paths:
160
160
  - api/node_modules
161
+ - api/.yarn/install-state.gz
161
162
  rules:
162
163
  - when: never
163
164
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -198,6 +199,7 @@ before_script:
198
199
  policy: pull-push
199
200
  paths:
200
201
  - api/node_modules
202
+ - api/.yarn/install-state.gz
201
203
  rules:
202
204
  - when: never
203
205
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -286,6 +288,7 @@ before_script:
286
288
  policy: pull-push
287
289
  paths:
288
290
  - api/node_modules
291
+ - api/.yarn/install-state.gz
289
292
  artifacts:
290
293
  paths:
291
294
  - api/__build_info.json
@@ -651,6 +654,7 @@ before_script:
651
654
  policy: pull-push
652
655
  paths:
653
656
  - api/node_modules
657
+ - api/.yarn/install-state.gz
654
658
  fallback_keys:
655
659
  - api-node-modules
656
660
  rules:
@@ -695,6 +699,7 @@ before_script:
695
699
  policy: pull-push
696
700
  paths:
697
701
  - api/node_modules
702
+ - api/.yarn/install-state.gz
698
703
  fallback_keys:
699
704
  - api-node-modules
700
705
  rules:
@@ -787,6 +792,7 @@ before_script:
787
792
  policy: pull-push
788
793
  paths:
789
794
  - api/node_modules
795
+ - api/.yarn/install-state.gz
790
796
  fallback_keys:
791
797
  - api-node-modules
792
798
  artifacts:
@@ -1190,6 +1196,7 @@ before_script:
1190
1196
  policy: pull-push
1191
1197
  paths:
1192
1198
  - api/node_modules
1199
+ - api/.yarn/install-state.gz
1193
1200
  artifacts:
1194
1201
  paths:
1195
1202
  - api/__build_info.json
@@ -1573,6 +1580,7 @@ before_script:
1573
1580
  policy: pull-push
1574
1581
  paths:
1575
1582
  - api/node_modules
1583
+ - api/.yarn/install-state.gz
1576
1584
  artifacts:
1577
1585
  paths:
1578
1586
  - api/__build_info.json