@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
  - 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
  artifacts:
274
277
  paths:
275
278
  - www/__build_info.json
@@ -628,6 +631,7 @@ before_script:
628
631
  policy: pull-push
629
632
  paths:
630
633
  - www/node_modules
634
+ - www/.yarn/install-state.gz
631
635
  fallback_keys:
632
636
  - www-node-modules
633
637
  rules:
@@ -672,6 +676,7 @@ before_script:
672
676
  policy: pull-push
673
677
  paths:
674
678
  - www/node_modules
679
+ - www/.yarn/install-state.gz
675
680
  fallback_keys:
676
681
  - www-node-modules
677
682
  rules:
@@ -748,6 +753,7 @@ before_script:
748
753
  policy: pull-push
749
754
  paths:
750
755
  - www/node_modules
756
+ - www/.yarn/install-state.gz
751
757
  fallback_keys:
752
758
  - www-node-modules
753
759
  artifacts:
@@ -1127,6 +1133,7 @@ before_script:
1127
1133
  policy: pull-push
1128
1134
  paths:
1129
1135
  - www/node_modules
1136
+ - www/.yarn/install-state.gz
1130
1137
  artifacts:
1131
1138
  paths:
1132
1139
  - www/__build_info.json
@@ -1487,6 +1494,7 @@ before_script:
1487
1494
  policy: pull-push
1488
1495
  paths:
1489
1496
  - www/node_modules
1497
+ - www/.yarn/install-state.gz
1490
1498
  artifacts:
1491
1499
  paths:
1492
1500
  - www/__build_info.json
@@ -159,6 +159,7 @@ before_script:
159
159
  policy: pull-push
160
160
  paths:
161
161
  - app/node_modules
162
+ - app/.yarn/install-state.gz
162
163
  rules:
163
164
  - when: never
164
165
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -199,6 +200,7 @@ before_script:
199
200
  policy: pull-push
200
201
  paths:
201
202
  - app/node_modules
203
+ - app/.yarn/install-state.gz
202
204
  rules:
203
205
  - when: never
204
206
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -271,6 +273,7 @@ before_script:
271
273
  policy: pull-push
272
274
  paths:
273
275
  - app/node_modules
276
+ - app/.yarn/install-state.gz
274
277
  artifacts:
275
278
  paths:
276
279
  - app/__build_info.json
@@ -574,6 +577,7 @@ before_script:
574
577
  policy: pull-push
575
578
  paths:
576
579
  - app/node_modules
580
+ - app/.yarn/install-state.gz
577
581
  fallback_keys:
578
582
  - app-node-modules
579
583
  rules:
@@ -618,6 +622,7 @@ before_script:
618
622
  policy: pull-push
619
623
  paths:
620
624
  - app/node_modules
625
+ - app/.yarn/install-state.gz
621
626
  fallback_keys:
622
627
  - app-node-modules
623
628
  rules:
@@ -694,6 +699,7 @@ before_script:
694
699
  policy: pull-push
695
700
  paths:
696
701
  - app/node_modules
702
+ - app/.yarn/install-state.gz
697
703
  fallback_keys:
698
704
  - app-node-modules
699
705
  artifacts:
@@ -1016,6 +1022,7 @@ before_script:
1016
1022
  policy: pull-push
1017
1023
  paths:
1018
1024
  - app/node_modules
1025
+ - app/.yarn/install-state.gz
1019
1026
  artifacts:
1020
1027
  paths:
1021
1028
  - app/__build_info.json
@@ -1321,6 +1328,7 @@ before_script:
1321
1328
  policy: pull-push
1322
1329
  paths:
1323
1330
  - app/node_modules
1331
+ - app/.yarn/install-state.gz
1324
1332
  artifacts:
1325
1333
  paths:
1326
1334
  - 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"
@@ -252,6 +254,7 @@ before_script:
252
254
  policy: pull-push
253
255
  paths:
254
256
  - api/node_modules
257
+ - api/.yarn/install-state.gz
255
258
  artifacts:
256
259
  paths:
257
260
  - api/__build_info.json
@@ -655,6 +658,7 @@ before_script:
655
658
  policy: pull-push
656
659
  paths:
657
660
  - api/node_modules
661
+ - api/.yarn/install-state.gz
658
662
  fallback_keys:
659
663
  - api-node-modules
660
664
  rules:
@@ -699,6 +703,7 @@ before_script:
699
703
  policy: pull-push
700
704
  paths:
701
705
  - api/node_modules
706
+ - api/.yarn/install-state.gz
702
707
  fallback_keys:
703
708
  - api-node-modules
704
709
  rules:
@@ -757,6 +762,7 @@ before_script:
757
762
  policy: pull-push
758
763
  paths:
759
764
  - api/node_modules
765
+ - api/.yarn/install-state.gz
760
766
  fallback_keys:
761
767
  - api-node-modules
762
768
  artifacts:
@@ -1156,6 +1162,7 @@ before_script:
1156
1162
  policy: pull-push
1157
1163
  paths:
1158
1164
  - api/node_modules
1165
+ - api/.yarn/install-state.gz
1159
1166
  artifacts:
1160
1167
  paths:
1161
1168
  - api/__build_info.json
@@ -1543,6 +1550,7 @@ before_script:
1543
1550
  policy: pull-push
1544
1551
  paths:
1545
1552
  - api/node_modules
1553
+ - api/.yarn/install-state.gz
1546
1554
  artifacts:
1547
1555
  paths:
1548
1556
  - 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"
@@ -254,6 +256,7 @@ before_script:
254
256
  policy: pull-push
255
257
  paths:
256
258
  - api/node_modules
259
+ - api/.yarn/install-state.gz
257
260
  artifacts:
258
261
  paths:
259
262
  - api/__build_info.json
@@ -660,6 +663,7 @@ before_script:
660
663
  policy: pull-push
661
664
  paths:
662
665
  - api/node_modules
666
+ - api/.yarn/install-state.gz
663
667
  fallback_keys:
664
668
  - api-node-modules
665
669
  rules:
@@ -704,6 +708,7 @@ before_script:
704
708
  policy: pull-push
705
709
  paths:
706
710
  - api/node_modules
711
+ - api/.yarn/install-state.gz
707
712
  fallback_keys:
708
713
  - api-node-modules
709
714
  rules:
@@ -764,6 +769,7 @@ before_script:
764
769
  policy: pull-push
765
770
  paths:
766
771
  - api/node_modules
772
+ - api/.yarn/install-state.gz
767
773
  fallback_keys:
768
774
  - api-node-modules
769
775
  artifacts:
@@ -1168,6 +1174,7 @@ before_script:
1168
1174
  policy: pull-push
1169
1175
  paths:
1170
1176
  - api/node_modules
1177
+ - api/.yarn/install-state.gz
1171
1178
  artifacts:
1172
1179
  paths:
1173
1180
  - api/__build_info.json
@@ -1560,6 +1567,7 @@ before_script:
1560
1567
  policy: pull-push
1561
1568
  paths:
1562
1569
  - api/node_modules
1570
+ - api/.yarn/install-state.gz
1563
1571
  artifacts:
1564
1572
  paths:
1565
1573
  - 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"
@@ -252,6 +254,7 @@ before_script:
252
254
  policy: pull-push
253
255
  paths:
254
256
  - api/node_modules
257
+ - api/.yarn/install-state.gz
255
258
  artifacts:
256
259
  paths:
257
260
  - api/__build_info.json
@@ -646,6 +649,7 @@ before_script:
646
649
  policy: pull-push
647
650
  paths:
648
651
  - api/node_modules
652
+ - api/.yarn/install-state.gz
649
653
  fallback_keys:
650
654
  - api-node-modules
651
655
  rules:
@@ -690,6 +694,7 @@ before_script:
690
694
  policy: pull-push
691
695
  paths:
692
696
  - api/node_modules
697
+ - api/.yarn/install-state.gz
693
698
  fallback_keys:
694
699
  - api-node-modules
695
700
  rules:
@@ -748,6 +753,7 @@ before_script:
748
753
  policy: pull-push
749
754
  paths:
750
755
  - api/node_modules
756
+ - api/.yarn/install-state.gz
751
757
  fallback_keys:
752
758
  - api-node-modules
753
759
  artifacts:
@@ -1133,6 +1139,7 @@ before_script:
1133
1139
  policy: pull-push
1134
1140
  paths:
1135
1141
  - api/node_modules
1142
+ - api/.yarn/install-state.gz
1136
1143
  artifacts:
1137
1144
  paths:
1138
1145
  - api/__build_info.json
@@ -1511,6 +1518,7 @@ before_script:
1511
1518
  policy: pull-push
1512
1519
  paths:
1513
1520
  - api/node_modules
1521
+ - api/.yarn/install-state.gz
1514
1522
  artifacts:
1515
1523
  paths:
1516
1524
  - api/__build_info.json
@@ -1896,6 +1904,7 @@ before_script:
1896
1904
  policy: pull-push
1897
1905
  paths:
1898
1906
  - www/node_modules
1907
+ - www/.yarn/install-state.gz
1899
1908
  rules:
1900
1909
  - when: never
1901
1910
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -1936,6 +1945,7 @@ before_script:
1936
1945
  policy: pull-push
1937
1946
  paths:
1938
1947
  - www/node_modules
1948
+ - www/.yarn/install-state.gz
1939
1949
  rules:
1940
1950
  - when: never
1941
1951
  if: $CI_PIPELINE_SOURCE == "trigger"
@@ -2006,6 +2016,7 @@ before_script:
2006
2016
  policy: pull-push
2007
2017
  paths:
2008
2018
  - www/node_modules
2019
+ - www/.yarn/install-state.gz
2009
2020
  artifacts:
2010
2021
  paths:
2011
2022
  - www/__build_info.json
@@ -2391,6 +2402,7 @@ before_script:
2391
2402
  policy: pull-push
2392
2403
  paths:
2393
2404
  - www/node_modules
2405
+ - www/.yarn/install-state.gz
2394
2406
  fallback_keys:
2395
2407
  - www-node-modules
2396
2408
  rules:
@@ -2435,6 +2447,7 @@ before_script:
2435
2447
  policy: pull-push
2436
2448
  paths:
2437
2449
  - www/node_modules
2450
+ - www/.yarn/install-state.gz
2438
2451
  fallback_keys:
2439
2452
  - www-node-modules
2440
2453
  rules:
@@ -2509,6 +2522,7 @@ before_script:
2509
2522
  policy: pull-push
2510
2523
  paths:
2511
2524
  - www/node_modules
2525
+ - www/.yarn/install-state.gz
2512
2526
  fallback_keys:
2513
2527
  - www-node-modules
2514
2528
  artifacts:
@@ -2906,6 +2920,7 @@ before_script:
2906
2920
  policy: pull-push
2907
2921
  paths:
2908
2922
  - www/node_modules
2923
+ - www/.yarn/install-state.gz
2909
2924
  artifacts:
2910
2925
  paths:
2911
2926
  - www/__build_info.json
@@ -3291,6 +3306,7 @@ before_script:
3291
3306
  policy: pull-push
3292
3307
  paths:
3293
3308
  - www/node_modules
3309
+ - www/.yarn/install-state.gz
3294
3310
  artifacts:
3295
3311
  paths:
3296
3312
  - www/__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"
@@ -254,6 +256,7 @@ before_script:
254
256
  policy: pull-push
255
257
  paths:
256
258
  - api/node_modules
259
+ - api/.yarn/install-state.gz
257
260
  artifacts:
258
261
  paths:
259
262
  - api/__build_info.json
@@ -691,6 +694,7 @@ before_script:
691
694
  policy: pull-push
692
695
  paths:
693
696
  - api/node_modules
697
+ - api/.yarn/install-state.gz
694
698
  fallback_keys:
695
699
  - api-node-modules
696
700
  rules:
@@ -735,6 +739,7 @@ before_script:
735
739
  policy: pull-push
736
740
  paths:
737
741
  - api/node_modules
742
+ - api/.yarn/install-state.gz
738
743
  fallback_keys:
739
744
  - api-node-modules
740
745
  rules:
@@ -795,6 +800,7 @@ before_script:
795
800
  policy: pull-push
796
801
  paths:
797
802
  - api/node_modules
803
+ - api/.yarn/install-state.gz
798
804
  fallback_keys:
799
805
  - api-node-modules
800
806
  artifacts:
@@ -1230,6 +1236,7 @@ before_script:
1230
1236
  policy: pull-push
1231
1237
  paths:
1232
1238
  - api/node_modules
1239
+ - api/.yarn/install-state.gz
1233
1240
  artifacts:
1234
1241
  paths:
1235
1242
  - api/__build_info.json
@@ -1653,6 +1660,7 @@ before_script:
1653
1660
  policy: pull-push
1654
1661
  paths:
1655
1662
  - api/node_modules
1663
+ - api/.yarn/install-state.gz
1656
1664
  artifacts:
1657
1665
  paths:
1658
1666
  - 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"
@@ -253,6 +255,7 @@ before_script:
253
255
  policy: pull-push
254
256
  paths:
255
257
  - api/node_modules
258
+ - api/.yarn/install-state.gz
256
259
  artifacts:
257
260
  paths:
258
261
  - api/__build_info.json
@@ -555,6 +558,7 @@ before_script:
555
558
  policy: pull-push
556
559
  paths:
557
560
  - api/node_modules
561
+ - api/.yarn/install-state.gz
558
562
  fallback_keys:
559
563
  - api-node-modules
560
564
  rules:
@@ -599,6 +603,7 @@ before_script:
599
603
  policy: pull-push
600
604
  paths:
601
605
  - api/node_modules
606
+ - api/.yarn/install-state.gz
602
607
  fallback_keys:
603
608
  - api-node-modules
604
609
  rules:
@@ -658,6 +663,7 @@ before_script:
658
663
  policy: pull-push
659
664
  paths:
660
665
  - api/node_modules
666
+ - api/.yarn/install-state.gz
661
667
  fallback_keys:
662
668
  - api-node-modules
663
669
  artifacts:
@@ -962,6 +968,7 @@ before_script:
962
968
  policy: pull-push
963
969
  paths:
964
970
  - api/node_modules
971
+ - api/.yarn/install-state.gz
965
972
  artifacts:
966
973
  paths:
967
974
  - api/__build_info.json
@@ -1249,6 +1256,7 @@ before_script:
1249
1256
  policy: pull-push
1250
1257
  paths:
1251
1258
  - api/node_modules
1259
+ - api/.yarn/install-state.gz
1252
1260
  artifacts:
1253
1261
  paths:
1254
1262
  - 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"
@@ -258,6 +260,7 @@ before_script:
258
260
  policy: pull-push
259
261
  paths:
260
262
  - app/node_modules
263
+ - app/.yarn/install-state.gz
261
264
  - key: web-meteor-build-cache
262
265
  policy: pull-push
263
266
  paths:
@@ -670,6 +673,7 @@ before_script:
670
673
  policy: pull-push
671
674
  paths:
672
675
  - app/node_modules
676
+ - app/.yarn/install-state.gz
673
677
  fallback_keys:
674
678
  - app-node-modules
675
679
  rules:
@@ -714,6 +718,7 @@ before_script:
714
718
  policy: pull-push
715
719
  paths:
716
720
  - app/node_modules
721
+ - app/.yarn/install-state.gz
717
722
  fallback_keys:
718
723
  - app-node-modules
719
724
  rules:
@@ -778,6 +783,7 @@ before_script:
778
783
  policy: pull-push
779
784
  paths:
780
785
  - app/node_modules
786
+ - app/.yarn/install-state.gz
781
787
  fallback_keys:
782
788
  - app-node-modules
783
789
  - key: web-meteor-build-cache-mr$CI_MERGE_REQUEST_IID
@@ -1192,6 +1198,7 @@ before_script:
1192
1198
  policy: pull-push
1193
1199
  paths:
1194
1200
  - app/node_modules
1201
+ - app/.yarn/install-state.gz
1195
1202
  - key: web-meteor-build-cache
1196
1203
  policy: pull-push
1197
1204
  paths:
@@ -1595,6 +1602,7 @@ before_script:
1595
1602
  policy: pull-push
1596
1603
  paths:
1597
1604
  - app/node_modules
1605
+ - app/.yarn/install-state.gz
1598
1606
  - key: web-meteor-build-cache
1599
1607
  policy: pull-push
1600
1608
  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"
@@ -262,6 +264,7 @@ before_script:
262
264
  policy: pull-push
263
265
  paths:
264
266
  - api/node_modules
267
+ - api/.yarn/install-state.gz
265
268
  artifacts:
266
269
  paths:
267
270
  - api/__build_info.json
@@ -358,6 +361,7 @@ before_script:
358
361
  policy: pull-push
359
362
  paths:
360
363
  - api/node_modules
364
+ - api/.yarn/install-state.gz
361
365
  fallback_keys:
362
366
  - api-node-modules
363
367
  rules:
@@ -402,6 +406,7 @@ before_script:
402
406
  policy: pull-push
403
407
  paths:
404
408
  - api/node_modules
409
+ - api/.yarn/install-state.gz
405
410
  fallback_keys:
406
411
  - api-node-modules
407
412
  rules:
@@ -470,6 +475,7 @@ before_script:
470
475
  policy: pull-push
471
476
  paths:
472
477
  - api/node_modules
478
+ - api/.yarn/install-state.gz
473
479
  fallback_keys:
474
480
  - api-node-modules
475
481
  artifacts:
@@ -569,6 +575,7 @@ before_script:
569
575
  policy: pull-push
570
576
  paths:
571
577
  - api/node_modules
578
+ - api/.yarn/install-state.gz
572
579
  artifacts:
573
580
  paths:
574
581
  - api/__build_info.json
@@ -666,6 +673,7 @@ before_script:
666
673
  policy: pull-push
667
674
  paths:
668
675
  - api/node_modules
676
+ - api/.yarn/install-state.gz
669
677
  artifacts:
670
678
  paths:
671
679
  - 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"
@@ -262,6 +264,7 @@ before_script:
262
264
  policy: pull-push
263
265
  paths:
264
266
  - api/node_modules
267
+ - api/.yarn/install-state.gz
265
268
  artifacts:
266
269
  paths:
267
270
  - api/__build_info.json
@@ -358,6 +361,7 @@ before_script:
358
361
  policy: pull-push
359
362
  paths:
360
363
  - api/node_modules
364
+ - api/.yarn/install-state.gz
361
365
  fallback_keys:
362
366
  - api-node-modules
363
367
  rules:
@@ -402,6 +406,7 @@ before_script:
402
406
  policy: pull-push
403
407
  paths:
404
408
  - api/node_modules
409
+ - api/.yarn/install-state.gz
405
410
  fallback_keys:
406
411
  - api-node-modules
407
412
  rules:
@@ -470,6 +475,7 @@ before_script:
470
475
  policy: pull-push
471
476
  paths:
472
477
  - api/node_modules
478
+ - api/.yarn/install-state.gz
473
479
  fallback_keys:
474
480
  - api-node-modules
475
481
  artifacts:
@@ -569,6 +575,7 @@ before_script:
569
575
  policy: pull-push
570
576
  paths:
571
577
  - api/node_modules
578
+ - api/.yarn/install-state.gz
572
579
  artifacts:
573
580
  paths:
574
581
  - api/__build_info.json
@@ -666,6 +673,7 @@ before_script:
666
673
  policy: pull-push
667
674
  paths:
668
675
  - api/node_modules
676
+ - api/.yarn/install-state.gz
669
677
  artifacts:
670
678
  paths:
671
679
  - api/__build_info.json