@catladder/pipeline 3.23.1 → 3.25.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.
- package/dist/build/artifacts/createBuildJobArtifact.js +13 -5
- package/dist/build/index.js +2 -1
- package/dist/build/types.d.ts +10 -0
- package/dist/constants.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/examples/__snapshots__/automatic-releases.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-health-check-defaults.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-health-check-only-startup.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-health-check.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-http2.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-memory-limit.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-nextjs.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-no-cpu-throttling.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-no-service.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-non-public.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-post-stop-job.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-service-custom-vpc-connector.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-service-custom-vpc.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-service-gen2.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-service-increase-timout.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-service-with-volumes.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-storybook.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-with-agents.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-with-gpu.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-with-ngnix.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-with-sql-legacy-jobs.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-with-sql-multiple-dbs.test.ts.snap +12 -0
- package/examples/__snapshots__/cloud-run-with-sql-reuse-db.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-with-sql.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-with-worker.test.ts.snap +4 -0
- package/examples/__snapshots__/custom-deploy.test.ts.snap +4 -0
- package/examples/__snapshots__/custom-envs.test.ts.snap +6 -0
- package/examples/__snapshots__/custom-verify-job.test.ts.snap +4 -0
- package/examples/__snapshots__/git-submodule.test.ts.snap +4 -0
- package/examples/__snapshots__/kubernetes-application-customization.test.ts.snap +8 -0
- package/examples/__snapshots__/kubernetes-with-cloud-sql.test.ts.snap +8 -0
- package/examples/__snapshots__/kubernetes-with-jobs.test.ts.snap +12 -0
- package/examples/__snapshots__/kubernetes-with-mongodb.test.ts.snap +8 -0
- package/examples/__snapshots__/local-dot-env.test.ts.snap +8 -0
- package/examples/__snapshots__/modify-generated-files.test.ts.snap +4 -0
- package/examples/__snapshots__/modify-generated-yaml.test.ts.snap +4 -0
- package/examples/__snapshots__/multiline-var.test.ts.snap +12 -0
- package/examples/__snapshots__/native-app.test.ts.snap +8 -0
- package/examples/__snapshots__/node-build-with-custom-image.test.ts.snap +4 -0
- package/examples/__snapshots__/node-build-with-docker-additions.test.ts.snap +4 -0
- package/examples/__snapshots__/override-secrets.test.ts.snap +4 -0
- package/examples/__snapshots__/referencing-other-vars.test.ts.snap +12 -0
- package/examples/__snapshots__/wait-for-other-deploy.test.ts.snap +8 -0
- package/examples/__snapshots__/workspace-api-www-turbo-cache.test.ts.snap +8 -0
- package/examples/__snapshots__/workspace-api-www.test.ts.snap +8 -0
- package/package.json +1 -1
- package/src/build/artifacts/createBuildJobArtifact.ts +35 -7
- package/src/build/index.ts +1 -0
- package/src/build/types.ts +11 -0
|
@@ -289,6 +289,7 @@ www 🧪 test:
|
|
|
289
289
|
- www/dist
|
|
290
290
|
exclude:
|
|
291
291
|
- www/.env
|
|
292
|
+
- www/.next/cache/**/*
|
|
292
293
|
expire_in: 1 day
|
|
293
294
|
when: always
|
|
294
295
|
reports: {}
|
|
@@ -598,6 +599,7 @@ www 🧪 test:
|
|
|
598
599
|
- www/dist
|
|
599
600
|
exclude:
|
|
600
601
|
- www/.env
|
|
602
|
+
- www/.next/cache/**/*
|
|
601
603
|
expire_in: 1 day
|
|
602
604
|
when: always
|
|
603
605
|
reports: {}
|
|
@@ -913,6 +915,7 @@ www 🧪 test:
|
|
|
913
915
|
- www/dist
|
|
914
916
|
exclude:
|
|
915
917
|
- www/.env
|
|
918
|
+
- www/.next/cache/**/*
|
|
916
919
|
expire_in: 1 day
|
|
917
920
|
when: always
|
|
918
921
|
reports: {}
|
|
@@ -1215,6 +1218,7 @@ www 🧪 test:
|
|
|
1215
1218
|
- www/dist
|
|
1216
1219
|
exclude:
|
|
1217
1220
|
- www/.env
|
|
1221
|
+
- www/.next/cache/**/*
|
|
1218
1222
|
expire_in: 1 day
|
|
1219
1223
|
when: always
|
|
1220
1224
|
reports: {}
|
|
@@ -289,6 +289,7 @@ www 🧪 test:
|
|
|
289
289
|
- www/dist
|
|
290
290
|
exclude:
|
|
291
291
|
- www/.env
|
|
292
|
+
- www/.next/cache/**/*
|
|
292
293
|
expire_in: 1 day
|
|
293
294
|
when: always
|
|
294
295
|
reports: {}
|
|
@@ -598,6 +599,7 @@ www 🧪 test:
|
|
|
598
599
|
- www/dist
|
|
599
600
|
exclude:
|
|
600
601
|
- www/.env
|
|
602
|
+
- www/.next/cache/**/*
|
|
601
603
|
expire_in: 1 day
|
|
602
604
|
when: always
|
|
603
605
|
reports: {}
|
|
@@ -913,6 +915,7 @@ www 🧪 test:
|
|
|
913
915
|
- www/dist
|
|
914
916
|
exclude:
|
|
915
917
|
- www/.env
|
|
918
|
+
- www/.next/cache/**/*
|
|
916
919
|
expire_in: 1 day
|
|
917
920
|
when: always
|
|
918
921
|
reports: {}
|
|
@@ -1215,6 +1218,7 @@ www 🧪 test:
|
|
|
1215
1218
|
- www/dist
|
|
1216
1219
|
exclude:
|
|
1217
1220
|
- www/.env
|
|
1221
|
+
- www/.next/cache/**/*
|
|
1218
1222
|
expire_in: 1 day
|
|
1219
1223
|
when: always
|
|
1220
1224
|
reports: {}
|
|
@@ -289,6 +289,7 @@ www 🧪 test:
|
|
|
289
289
|
- www/dist
|
|
290
290
|
exclude:
|
|
291
291
|
- www/.env
|
|
292
|
+
- www/.next/cache/**/*
|
|
292
293
|
expire_in: 1 day
|
|
293
294
|
when: always
|
|
294
295
|
reports: {}
|
|
@@ -598,6 +599,7 @@ www 🧪 test:
|
|
|
598
599
|
- www/dist
|
|
599
600
|
exclude:
|
|
600
601
|
- www/.env
|
|
602
|
+
- www/.next/cache/**/*
|
|
601
603
|
expire_in: 1 day
|
|
602
604
|
when: always
|
|
603
605
|
reports: {}
|
|
@@ -913,6 +915,7 @@ www 🧪 test:
|
|
|
913
915
|
- www/dist
|
|
914
916
|
exclude:
|
|
915
917
|
- www/.env
|
|
918
|
+
- www/.next/cache/**/*
|
|
916
919
|
expire_in: 1 day
|
|
917
920
|
when: always
|
|
918
921
|
reports: {}
|
|
@@ -1215,6 +1218,7 @@ www 🧪 test:
|
|
|
1215
1218
|
- www/dist
|
|
1216
1219
|
exclude:
|
|
1217
1220
|
- www/.env
|
|
1221
|
+
- www/.next/cache/**/*
|
|
1218
1222
|
expire_in: 1 day
|
|
1219
1223
|
when: always
|
|
1220
1224
|
reports: {}
|
|
@@ -289,6 +289,7 @@ www 🧪 test:
|
|
|
289
289
|
- www/dist
|
|
290
290
|
exclude:
|
|
291
291
|
- www/.env
|
|
292
|
+
- www/.next/cache/**/*
|
|
292
293
|
expire_in: 1 day
|
|
293
294
|
when: always
|
|
294
295
|
reports: {}
|
|
@@ -598,6 +599,7 @@ www 🧪 test:
|
|
|
598
599
|
- www/dist
|
|
599
600
|
exclude:
|
|
600
601
|
- www/.env
|
|
602
|
+
- www/.next/cache/**/*
|
|
601
603
|
expire_in: 1 day
|
|
602
604
|
when: always
|
|
603
605
|
reports: {}
|
|
@@ -913,6 +915,7 @@ www 🧪 test:
|
|
|
913
915
|
- www/dist
|
|
914
916
|
exclude:
|
|
915
917
|
- www/.env
|
|
918
|
+
- www/.next/cache/**/*
|
|
916
919
|
expire_in: 1 day
|
|
917
920
|
when: always
|
|
918
921
|
reports: {}
|
|
@@ -1215,6 +1218,7 @@ www 🧪 test:
|
|
|
1215
1218
|
- www/dist
|
|
1216
1219
|
exclude:
|
|
1217
1220
|
- www/.env
|
|
1221
|
+
- www/.next/cache/**/*
|
|
1218
1222
|
expire_in: 1 day
|
|
1219
1223
|
when: always
|
|
1220
1224
|
reports: {}
|
|
@@ -289,6 +289,7 @@ api 🧪 test:
|
|
|
289
289
|
- api/dist
|
|
290
290
|
exclude:
|
|
291
291
|
- api/.env
|
|
292
|
+
- api/.next/cache/**/*
|
|
292
293
|
expire_in: 1 day
|
|
293
294
|
when: always
|
|
294
295
|
reports: {}
|
|
@@ -598,6 +599,7 @@ api 🧪 test:
|
|
|
598
599
|
- api/dist
|
|
599
600
|
exclude:
|
|
600
601
|
- api/.env
|
|
602
|
+
- api/.next/cache/**/*
|
|
601
603
|
expire_in: 1 day
|
|
602
604
|
when: always
|
|
603
605
|
reports: {}
|
|
@@ -913,6 +915,7 @@ api 🧪 test:
|
|
|
913
915
|
- api/dist
|
|
914
916
|
exclude:
|
|
915
917
|
- api/.env
|
|
918
|
+
- api/.next/cache/**/*
|
|
916
919
|
expire_in: 1 day
|
|
917
920
|
when: always
|
|
918
921
|
reports: {}
|
|
@@ -1215,6 +1218,7 @@ api 🧪 test:
|
|
|
1215
1218
|
- api/dist
|
|
1216
1219
|
exclude:
|
|
1217
1220
|
- api/.env
|
|
1221
|
+
- api/.next/cache/**/*
|
|
1218
1222
|
expire_in: 1 day
|
|
1219
1223
|
when: always
|
|
1220
1224
|
reports: {}
|
|
@@ -289,6 +289,7 @@ api 🧪 test:
|
|
|
289
289
|
- api/dist
|
|
290
290
|
exclude:
|
|
291
291
|
- api/.env
|
|
292
|
+
- api/.next/cache/**/*
|
|
292
293
|
expire_in: 1 day
|
|
293
294
|
when: always
|
|
294
295
|
reports: {}
|
|
@@ -598,6 +599,7 @@ api 🧪 test:
|
|
|
598
599
|
- api/dist
|
|
599
600
|
exclude:
|
|
600
601
|
- api/.env
|
|
602
|
+
- api/.next/cache/**/*
|
|
601
603
|
expire_in: 1 day
|
|
602
604
|
when: always
|
|
603
605
|
reports: {}
|
|
@@ -913,6 +915,7 @@ api 🧪 test:
|
|
|
913
915
|
- api/dist
|
|
914
916
|
exclude:
|
|
915
917
|
- api/.env
|
|
918
|
+
- api/.next/cache/**/*
|
|
916
919
|
expire_in: 1 day
|
|
917
920
|
when: always
|
|
918
921
|
reports: {}
|
|
@@ -1215,6 +1218,7 @@ api 🧪 test:
|
|
|
1215
1218
|
- api/dist
|
|
1216
1219
|
exclude:
|
|
1217
1220
|
- api/.env
|
|
1221
|
+
- api/.next/cache/**/*
|
|
1218
1222
|
expire_in: 1 day
|
|
1219
1223
|
when: always
|
|
1220
1224
|
reports: {}
|
|
@@ -293,6 +293,7 @@ www 🧪 test:
|
|
|
293
293
|
- www/dist
|
|
294
294
|
exclude:
|
|
295
295
|
- www/.env
|
|
296
|
+
- www/.next/cache/**/*
|
|
296
297
|
expire_in: 1 day
|
|
297
298
|
when: always
|
|
298
299
|
reports: {}
|
|
@@ -606,6 +607,7 @@ www 🧪 test:
|
|
|
606
607
|
- www/dist
|
|
607
608
|
exclude:
|
|
608
609
|
- www/.env
|
|
610
|
+
- www/.next/cache/**/*
|
|
609
611
|
expire_in: 1 day
|
|
610
612
|
when: always
|
|
611
613
|
reports: {}
|
|
@@ -925,6 +927,7 @@ www 🧪 test:
|
|
|
925
927
|
- www/dist
|
|
926
928
|
exclude:
|
|
927
929
|
- www/.env
|
|
930
|
+
- www/.next/cache/**/*
|
|
928
931
|
expire_in: 1 day
|
|
929
932
|
when: always
|
|
930
933
|
reports: {}
|
|
@@ -1231,6 +1234,7 @@ www 🧪 test:
|
|
|
1231
1234
|
- www/dist
|
|
1232
1235
|
exclude:
|
|
1233
1236
|
- www/.env
|
|
1237
|
+
- www/.next/cache/**/*
|
|
1234
1238
|
expire_in: 1 day
|
|
1235
1239
|
when: always
|
|
1236
1240
|
reports: {}
|
|
@@ -289,6 +289,7 @@ api 🧪 test:
|
|
|
289
289
|
- api/dist
|
|
290
290
|
exclude:
|
|
291
291
|
- api/.env
|
|
292
|
+
- api/.next/cache/**/*
|
|
292
293
|
expire_in: 1 day
|
|
293
294
|
when: always
|
|
294
295
|
reports: {}
|
|
@@ -598,6 +599,7 @@ api 🧪 test:
|
|
|
598
599
|
- api/dist
|
|
599
600
|
exclude:
|
|
600
601
|
- api/.env
|
|
602
|
+
- api/.next/cache/**/*
|
|
601
603
|
expire_in: 1 day
|
|
602
604
|
when: always
|
|
603
605
|
reports: {}
|
|
@@ -913,6 +915,7 @@ api 🧪 test:
|
|
|
913
915
|
- api/dist
|
|
914
916
|
exclude:
|
|
915
917
|
- api/.env
|
|
918
|
+
- api/.next/cache/**/*
|
|
916
919
|
expire_in: 1 day
|
|
917
920
|
when: always
|
|
918
921
|
reports: {}
|
|
@@ -1215,6 +1218,7 @@ api 🧪 test:
|
|
|
1215
1218
|
- api/dist
|
|
1216
1219
|
exclude:
|
|
1217
1220
|
- api/.env
|
|
1221
|
+
- api/.next/cache/**/*
|
|
1218
1222
|
expire_in: 1 day
|
|
1219
1223
|
when: always
|
|
1220
1224
|
reports: {}
|
|
@@ -291,6 +291,7 @@ api 🧪 test:
|
|
|
291
291
|
- app/dist
|
|
292
292
|
exclude:
|
|
293
293
|
- app/.env
|
|
294
|
+
- app/.next/cache/**/*
|
|
294
295
|
expire_in: 1 day
|
|
295
296
|
when: always
|
|
296
297
|
reports: {}
|
|
@@ -627,6 +628,7 @@ api 🧪 test:
|
|
|
627
628
|
- app/dist
|
|
628
629
|
exclude:
|
|
629
630
|
- app/.env
|
|
631
|
+
- app/.next/cache/**/*
|
|
630
632
|
expire_in: 1 day
|
|
631
633
|
when: always
|
|
632
634
|
reports: {}
|
|
@@ -969,6 +971,7 @@ api 🧪 test:
|
|
|
969
971
|
- app/dist
|
|
970
972
|
exclude:
|
|
971
973
|
- app/.env
|
|
974
|
+
- app/.next/cache/**/*
|
|
972
975
|
expire_in: 1 day
|
|
973
976
|
when: always
|
|
974
977
|
reports: {}
|
|
@@ -1298,6 +1301,7 @@ api 🧪 test:
|
|
|
1298
1301
|
- app/dist
|
|
1299
1302
|
exclude:
|
|
1300
1303
|
- app/.env
|
|
1304
|
+
- app/.next/cache/**/*
|
|
1301
1305
|
expire_in: 1 day
|
|
1302
1306
|
when: always
|
|
1303
1307
|
reports: {}
|
|
@@ -289,6 +289,7 @@ api 🧪 test:
|
|
|
289
289
|
- api/dist
|
|
290
290
|
exclude:
|
|
291
291
|
- api/.env
|
|
292
|
+
- api/.next/cache/**/*
|
|
292
293
|
expire_in: 1 day
|
|
293
294
|
when: always
|
|
294
295
|
reports: {}
|
|
@@ -598,6 +599,7 @@ api 🧪 test:
|
|
|
598
599
|
- api/dist
|
|
599
600
|
exclude:
|
|
600
601
|
- api/.env
|
|
602
|
+
- api/.next/cache/**/*
|
|
601
603
|
expire_in: 1 day
|
|
602
604
|
when: always
|
|
603
605
|
reports: {}
|
|
@@ -913,6 +915,7 @@ api 🧪 test:
|
|
|
913
915
|
- api/dist
|
|
914
916
|
exclude:
|
|
915
917
|
- api/.env
|
|
918
|
+
- api/.next/cache/**/*
|
|
916
919
|
expire_in: 1 day
|
|
917
920
|
when: always
|
|
918
921
|
reports: {}
|
|
@@ -1215,6 +1218,7 @@ api 🧪 test:
|
|
|
1215
1218
|
- api/dist
|
|
1216
1219
|
exclude:
|
|
1217
1220
|
- api/.env
|
|
1221
|
+
- api/.next/cache/**/*
|
|
1218
1222
|
expire_in: 1 day
|
|
1219
1223
|
when: always
|
|
1220
1224
|
reports: {}
|
|
@@ -289,6 +289,7 @@ api 🧪 test:
|
|
|
289
289
|
- api/dist
|
|
290
290
|
exclude:
|
|
291
291
|
- api/.env
|
|
292
|
+
- api/.next/cache/**/*
|
|
292
293
|
expire_in: 1 day
|
|
293
294
|
when: always
|
|
294
295
|
reports: {}
|
|
@@ -600,6 +601,7 @@ api 🧪 test:
|
|
|
600
601
|
- api/dist
|
|
601
602
|
exclude:
|
|
602
603
|
- api/.env
|
|
604
|
+
- api/.next/cache/**/*
|
|
603
605
|
expire_in: 1 day
|
|
604
606
|
when: always
|
|
605
607
|
reports: {}
|
|
@@ -931,6 +933,7 @@ api 🧪 test:
|
|
|
931
933
|
- api/dist
|
|
932
934
|
exclude:
|
|
933
935
|
- api/.env
|
|
936
|
+
- api/.next/cache/**/*
|
|
934
937
|
expire_in: 1 day
|
|
935
938
|
when: always
|
|
936
939
|
reports: {}
|
|
@@ -1233,6 +1236,7 @@ api 🧪 test:
|
|
|
1233
1236
|
- api/dist
|
|
1234
1237
|
exclude:
|
|
1235
1238
|
- api/.env
|
|
1239
|
+
- api/.next/cache/**/*
|
|
1236
1240
|
expire_in: 1 day
|
|
1237
1241
|
when: always
|
|
1238
1242
|
reports: {}
|
|
@@ -291,6 +291,7 @@ api 🧪 test:
|
|
|
291
291
|
- api/dist
|
|
292
292
|
exclude:
|
|
293
293
|
- api/.env
|
|
294
|
+
- api/.next/cache/**/*
|
|
294
295
|
expire_in: 1 day
|
|
295
296
|
when: always
|
|
296
297
|
reports: {}
|
|
@@ -617,6 +618,7 @@ api 🧪 test:
|
|
|
617
618
|
- api/dist
|
|
618
619
|
exclude:
|
|
619
620
|
- api/.env
|
|
621
|
+
- api/.next/cache/**/*
|
|
620
622
|
expire_in: 1 day
|
|
621
623
|
when: always
|
|
622
624
|
reports: {}
|
|
@@ -949,6 +951,7 @@ api 🧪 test:
|
|
|
949
951
|
- api/dist
|
|
950
952
|
exclude:
|
|
951
953
|
- api/.env
|
|
954
|
+
- api/.next/cache/**/*
|
|
952
955
|
expire_in: 1 day
|
|
953
956
|
when: always
|
|
954
957
|
reports: {}
|
|
@@ -1268,6 +1271,7 @@ api 🧪 test:
|
|
|
1268
1271
|
- api/dist
|
|
1269
1272
|
exclude:
|
|
1270
1273
|
- api/.env
|
|
1274
|
+
- api/.next/cache/**/*
|
|
1271
1275
|
expire_in: 1 day
|
|
1272
1276
|
when: always
|
|
1273
1277
|
reports: {}
|
|
@@ -291,6 +291,7 @@ api 🧪 test:
|
|
|
291
291
|
- api/dist
|
|
292
292
|
exclude:
|
|
293
293
|
- api/.env
|
|
294
|
+
- api/.next/cache/**/*
|
|
294
295
|
expire_in: 1 day
|
|
295
296
|
when: always
|
|
296
297
|
reports: {}
|
|
@@ -617,6 +618,7 @@ api 🧪 test:
|
|
|
617
618
|
- api/dist
|
|
618
619
|
exclude:
|
|
619
620
|
- api/.env
|
|
621
|
+
- api/.next/cache/**/*
|
|
620
622
|
expire_in: 1 day
|
|
621
623
|
when: always
|
|
622
624
|
reports: {}
|
|
@@ -949,6 +951,7 @@ api 🧪 test:
|
|
|
949
951
|
- api/dist
|
|
950
952
|
exclude:
|
|
951
953
|
- api/.env
|
|
954
|
+
- api/.next/cache/**/*
|
|
952
955
|
expire_in: 1 day
|
|
953
956
|
when: always
|
|
954
957
|
reports: {}
|
|
@@ -1268,6 +1271,7 @@ api 🧪 test:
|
|
|
1268
1271
|
- api/dist
|
|
1269
1272
|
exclude:
|
|
1270
1273
|
- api/.env
|
|
1274
|
+
- api/.next/cache/**/*
|
|
1271
1275
|
expire_in: 1 day
|
|
1272
1276
|
when: always
|
|
1273
1277
|
reports: {}
|
|
@@ -289,6 +289,7 @@ api 🧪 test:
|
|
|
289
289
|
- api/dist
|
|
290
290
|
exclude:
|
|
291
291
|
- api/.env
|
|
292
|
+
- api/.next/cache/**/*
|
|
292
293
|
expire_in: 1 day
|
|
293
294
|
when: always
|
|
294
295
|
reports: {}
|
|
@@ -598,6 +599,7 @@ api 🧪 test:
|
|
|
598
599
|
- api/dist
|
|
599
600
|
exclude:
|
|
600
601
|
- api/.env
|
|
602
|
+
- api/.next/cache/**/*
|
|
601
603
|
expire_in: 1 day
|
|
602
604
|
when: always
|
|
603
605
|
reports: {}
|
|
@@ -913,6 +915,7 @@ api 🧪 test:
|
|
|
913
915
|
- api/dist
|
|
914
916
|
exclude:
|
|
915
917
|
- api/.env
|
|
918
|
+
- api/.next/cache/**/*
|
|
916
919
|
expire_in: 1 day
|
|
917
920
|
when: always
|
|
918
921
|
reports: {}
|
|
@@ -1215,6 +1218,7 @@ api 🧪 test:
|
|
|
1215
1218
|
- api/dist
|
|
1216
1219
|
exclude:
|
|
1217
1220
|
- api/.env
|
|
1221
|
+
- api/.next/cache/**/*
|
|
1218
1222
|
expire_in: 1 day
|
|
1219
1223
|
when: always
|
|
1220
1224
|
reports: {}
|
|
@@ -289,6 +289,7 @@ api 🧪 test:
|
|
|
289
289
|
- api/dist
|
|
290
290
|
exclude:
|
|
291
291
|
- api/.env
|
|
292
|
+
- api/.next/cache/**/*
|
|
292
293
|
expire_in: 1 day
|
|
293
294
|
when: always
|
|
294
295
|
reports: {}
|
|
@@ -598,6 +599,7 @@ api 🧪 test:
|
|
|
598
599
|
- api/dist
|
|
599
600
|
exclude:
|
|
600
601
|
- api/.env
|
|
602
|
+
- api/.next/cache/**/*
|
|
601
603
|
expire_in: 1 day
|
|
602
604
|
when: always
|
|
603
605
|
reports: {}
|
|
@@ -913,6 +915,7 @@ api 🧪 test:
|
|
|
913
915
|
- api/dist
|
|
914
916
|
exclude:
|
|
915
917
|
- api/.env
|
|
918
|
+
- api/.next/cache/**/*
|
|
916
919
|
expire_in: 1 day
|
|
917
920
|
when: always
|
|
918
921
|
reports: {}
|
|
@@ -1215,6 +1218,7 @@ api 🧪 test:
|
|
|
1215
1218
|
- api/dist
|
|
1216
1219
|
exclude:
|
|
1217
1220
|
- api/.env
|
|
1221
|
+
- api/.next/cache/**/*
|
|
1218
1222
|
expire_in: 1 day
|
|
1219
1223
|
when: always
|
|
1220
1224
|
reports: {}
|
|
@@ -291,6 +291,7 @@ api 🧪 test:
|
|
|
291
291
|
- api/dist
|
|
292
292
|
exclude:
|
|
293
293
|
- api/.env
|
|
294
|
+
- api/.next/cache/**/*
|
|
294
295
|
expire_in: 1 day
|
|
295
296
|
when: always
|
|
296
297
|
reports: {}
|
|
@@ -618,6 +619,7 @@ api 🧪 test:
|
|
|
618
619
|
- api/dist
|
|
619
620
|
exclude:
|
|
620
621
|
- api/.env
|
|
622
|
+
- api/.next/cache/**/*
|
|
621
623
|
expire_in: 1 day
|
|
622
624
|
when: always
|
|
623
625
|
reports: {}
|
|
@@ -951,6 +953,7 @@ api 🧪 test:
|
|
|
951
953
|
- api/dist
|
|
952
954
|
exclude:
|
|
953
955
|
- api/.env
|
|
956
|
+
- api/.next/cache/**/*
|
|
954
957
|
expire_in: 1 day
|
|
955
958
|
when: always
|
|
956
959
|
reports: {}
|
|
@@ -1271,6 +1274,7 @@ api 🧪 test:
|
|
|
1271
1274
|
- api/dist
|
|
1272
1275
|
exclude:
|
|
1273
1276
|
- api/.env
|
|
1277
|
+
- api/.next/cache/**/*
|
|
1274
1278
|
expire_in: 1 day
|
|
1275
1279
|
when: always
|
|
1276
1280
|
reports: {}
|
|
@@ -175,6 +175,7 @@ before_script:
|
|
|
175
175
|
- app/dist
|
|
176
176
|
exclude:
|
|
177
177
|
- app/.env
|
|
178
|
+
- app/.next/cache/**/*
|
|
178
179
|
expire_in: 1 day
|
|
179
180
|
when: always
|
|
180
181
|
reports: {}
|
|
@@ -482,6 +483,7 @@ before_script:
|
|
|
482
483
|
- app/dist
|
|
483
484
|
exclude:
|
|
484
485
|
- app/.env
|
|
486
|
+
- app/.next/cache/**/*
|
|
485
487
|
expire_in: 1 day
|
|
486
488
|
when: always
|
|
487
489
|
reports: {}
|
|
@@ -791,6 +793,7 @@ before_script:
|
|
|
791
793
|
- app/dist
|
|
792
794
|
exclude:
|
|
793
795
|
- app/.env
|
|
796
|
+
- app/.next/cache/**/*
|
|
794
797
|
expire_in: 1 day
|
|
795
798
|
when: always
|
|
796
799
|
reports: {}
|
|
@@ -1093,6 +1096,7 @@ before_script:
|
|
|
1093
1096
|
- app/dist
|
|
1094
1097
|
exclude:
|
|
1095
1098
|
- app/.env
|
|
1099
|
+
- app/.next/cache/**/*
|
|
1096
1100
|
expire_in: 1 day
|
|
1097
1101
|
when: always
|
|
1098
1102
|
reports: {}
|
|
@@ -293,6 +293,7 @@ www 🧪 test:
|
|
|
293
293
|
- www/dist
|
|
294
294
|
exclude:
|
|
295
295
|
- www/.env
|
|
296
|
+
- www/.next/cache/**/*
|
|
296
297
|
expire_in: 1 day
|
|
297
298
|
when: always
|
|
298
299
|
reports: {}
|
|
@@ -606,6 +607,7 @@ www 🧪 test:
|
|
|
606
607
|
- www/dist
|
|
607
608
|
exclude:
|
|
608
609
|
- www/.env
|
|
610
|
+
- www/.next/cache/**/*
|
|
609
611
|
expire_in: 1 day
|
|
610
612
|
when: always
|
|
611
613
|
reports: {}
|
|
@@ -925,6 +927,7 @@ www 🧪 test:
|
|
|
925
927
|
- www/dist
|
|
926
928
|
exclude:
|
|
927
929
|
- www/.env
|
|
930
|
+
- www/.next/cache/**/*
|
|
928
931
|
expire_in: 1 day
|
|
929
932
|
when: always
|
|
930
933
|
reports: {}
|
|
@@ -1231,6 +1234,7 @@ www 🧪 test:
|
|
|
1231
1234
|
- www/dist
|
|
1232
1235
|
exclude:
|
|
1233
1236
|
- www/.env
|
|
1237
|
+
- www/.next/cache/**/*
|
|
1234
1238
|
expire_in: 1 day
|
|
1235
1239
|
when: always
|
|
1236
1240
|
reports: {}
|
|
@@ -289,6 +289,7 @@ api 🧪 test:
|
|
|
289
289
|
- api/dist
|
|
290
290
|
exclude:
|
|
291
291
|
- api/.env
|
|
292
|
+
- api/.next/cache/**/*
|
|
292
293
|
expire_in: 1 day
|
|
293
294
|
when: always
|
|
294
295
|
reports: {}
|
|
@@ -598,6 +599,7 @@ api 🧪 test:
|
|
|
598
599
|
- api/dist
|
|
599
600
|
exclude:
|
|
600
601
|
- api/.env
|
|
602
|
+
- api/.next/cache/**/*
|
|
601
603
|
expire_in: 1 day
|
|
602
604
|
when: always
|
|
603
605
|
reports: {}
|
|
@@ -913,6 +915,7 @@ api 🧪 test:
|
|
|
913
915
|
- api/dist
|
|
914
916
|
exclude:
|
|
915
917
|
- api/.env
|
|
918
|
+
- api/.next/cache/**/*
|
|
916
919
|
expire_in: 1 day
|
|
917
920
|
when: always
|
|
918
921
|
reports: {}
|
|
@@ -1215,6 +1218,7 @@ api 🧪 test:
|
|
|
1215
1218
|
- api/dist
|
|
1216
1219
|
exclude:
|
|
1217
1220
|
- api/.env
|
|
1221
|
+
- api/.next/cache/**/*
|
|
1218
1222
|
expire_in: 1 day
|
|
1219
1223
|
when: always
|
|
1220
1224
|
reports: {}
|
|
@@ -289,6 +289,7 @@ api 🧪 test:
|
|
|
289
289
|
- app/dist
|
|
290
290
|
exclude:
|
|
291
291
|
- app/.env
|
|
292
|
+
- app/.next/cache/**/*
|
|
292
293
|
expire_in: 1 day
|
|
293
294
|
when: always
|
|
294
295
|
reports: {}
|
|
@@ -598,6 +599,7 @@ api 🧪 test:
|
|
|
598
599
|
- app/dist
|
|
599
600
|
exclude:
|
|
600
601
|
- app/.env
|
|
602
|
+
- app/.next/cache/**/*
|
|
601
603
|
expire_in: 1 day
|
|
602
604
|
when: always
|
|
603
605
|
reports: {}
|
|
@@ -913,6 +915,7 @@ api 🧪 test:
|
|
|
913
915
|
- app/dist
|
|
914
916
|
exclude:
|
|
915
917
|
- app/.env
|
|
918
|
+
- app/.next/cache/**/*
|
|
916
919
|
expire_in: 1 day
|
|
917
920
|
when: always
|
|
918
921
|
reports: {}
|
|
@@ -1215,6 +1218,7 @@ api 🧪 test:
|
|
|
1215
1218
|
- app/dist
|
|
1216
1219
|
exclude:
|
|
1217
1220
|
- app/.env
|
|
1221
|
+
- app/.next/cache/**/*
|
|
1218
1222
|
expire_in: 1 day
|
|
1219
1223
|
when: always
|
|
1220
1224
|
reports: {}
|
|
@@ -305,6 +305,7 @@ api 🧪 test:
|
|
|
305
305
|
- api/dist
|
|
306
306
|
exclude:
|
|
307
307
|
- api/.env
|
|
308
|
+
- api/.next/cache/**/*
|
|
308
309
|
expire_in: 1 day
|
|
309
310
|
when: always
|
|
310
311
|
reports: {}
|
|
@@ -692,6 +693,7 @@ api 🧪 test:
|
|
|
692
693
|
- api/dist
|
|
693
694
|
exclude:
|
|
694
695
|
- api/.env
|
|
696
|
+
- api/.next/cache/**/*
|
|
695
697
|
expire_in: 1 day
|
|
696
698
|
when: always
|
|
697
699
|
reports: {}
|
|
@@ -1088,6 +1090,7 @@ api 🧪 test:
|
|
|
1088
1090
|
- api/dist
|
|
1089
1091
|
exclude:
|
|
1090
1092
|
- api/.env
|
|
1093
|
+
- api/.next/cache/**/*
|
|
1091
1094
|
expire_in: 1 day
|
|
1092
1095
|
when: always
|
|
1093
1096
|
reports: {}
|
|
@@ -1468,6 +1471,7 @@ api 🧪 test:
|
|
|
1468
1471
|
- api/dist
|
|
1469
1472
|
exclude:
|
|
1470
1473
|
- api/.env
|
|
1474
|
+
- api/.next/cache/**/*
|
|
1471
1475
|
expire_in: 1 day
|
|
1472
1476
|
when: always
|
|
1473
1477
|
reports: {}
|