@@ -35,6 +35,7 @@ test('Not CI', function (t) {
35
35
t . equal ( ci . isCI , false )
36
36
t . equal ( ci . isPR , null )
37
37
t . equal ( ci . name , null )
38
+ t . equal ( ci . id , null )
38
39
t . equal ( ci . TRAVIS , false )
39
40
assertVendorConstants ( null , ci , t )
40
41
@@ -61,6 +62,7 @@ test('Unknown CI', function (t) {
61
62
t . equal ( ci . isCI , true )
62
63
t . equal ( ci . isPR , null )
63
64
t . equal ( ci . name , null )
65
+ t . equal ( ci . id , null )
64
66
t . equal ( ci . TRAVIS , false )
65
67
assertVendorConstants ( null , ci , t )
66
68
@@ -82,6 +84,7 @@ test('Anonymous CI', function (t) {
82
84
t . equal ( ci . isCI , true )
83
85
t . equal ( ci . isPR , null )
84
86
t . equal ( ci . name , null )
87
+ t . equal ( ci . id , null )
85
88
}
86
89
87
90
t . end ( )
@@ -98,6 +101,7 @@ test('AppVeyor - PR', function (t) {
98
101
t . equal ( ci . isPR , true )
99
102
t . equal ( ci . name , 'AppVeyor' )
100
103
t . equal ( ci . APPVEYOR , true )
104
+ t . equal ( ci . id , 'APPVEYOR' )
101
105
assertVendorConstants ( 'APPVEYOR' , ci , t )
102
106
103
107
delete process . env . APPVEYOR
@@ -116,6 +120,7 @@ test('AppVeyor - Not PR', function (t) {
116
120
t . equal ( ci . isPR , false )
117
121
t . equal ( ci . name , 'AppVeyor' )
118
122
t . equal ( ci . APPVEYOR , true )
123
+ t . equal ( ci . id , 'APPVEYOR' )
119
124
assertVendorConstants ( 'APPVEYOR' , ci , t )
120
125
121
126
delete process . env . APPVEYOR
@@ -134,6 +139,7 @@ test('Azure Pipelines - PR', function (t) {
134
139
t . equal ( ci . isPR , true )
135
140
t . equal ( ci . name , 'Azure Pipelines' )
136
141
t . equal ( ci . AZURE_PIPELINES , true )
142
+ t . equal ( ci . id , 'AZURE_PIPELINES' )
137
143
assertVendorConstants ( 'AZURE_PIPELINES' , ci , t )
138
144
139
145
delete process . env . TF_BUILD
@@ -152,6 +158,7 @@ test('Azure Pipelines - Not PR', function (t) {
152
158
t . equal ( ci . isPR , false )
153
159
t . equal ( ci . name , 'Azure Pipelines' )
154
160
t . equal ( ci . AZURE_PIPELINES , true )
161
+ t . equal ( ci . id , 'AZURE_PIPELINES' )
155
162
assertVendorConstants ( 'AZURE_PIPELINES' , ci , t )
156
163
157
164
delete process . env . TF_BUILD
@@ -170,6 +177,7 @@ test('Bitbucket Pipelines - PR', function (t) {
170
177
t . equal ( ci . isPR , true )
171
178
t . equal ( ci . name , 'Bitbucket Pipelines' )
172
179
t . equal ( ci . BITBUCKET , true )
180
+ t . equal ( ci . id , 'BITBUCKET' )
173
181
assertVendorConstants ( 'BITBUCKET' , ci , t )
174
182
175
183
delete process . env . BITBUCKET_COMMIT
@@ -188,6 +196,7 @@ test('Bitbucket Pipelines - Not PR', function (t) {
188
196
t . equal ( ci . isPR , false )
189
197
t . equal ( ci . name , 'Bitbucket Pipelines' )
190
198
t . equal ( ci . BITBUCKET , true )
199
+ t . equal ( ci . id , 'BITBUCKET' )
191
200
assertVendorConstants ( 'BITBUCKET' , ci , t )
192
201
193
202
delete process . env . BITBUCKET_COMMIT
@@ -206,6 +215,7 @@ test('Buildkite - PR', function (t) {
206
215
t . equal ( ci . isPR , true )
207
216
t . equal ( ci . name , 'Buildkite' )
208
217
t . equal ( ci . BUILDKITE , true )
218
+ t . equal ( ci . id , 'BUILDKITE' )
209
219
assertVendorConstants ( 'BUILDKITE' , ci , t )
210
220
211
221
delete process . env . BUILDKITE
@@ -225,6 +235,7 @@ test('Buildkite - Not PR', function (t) {
225
235
t . equal ( ci . isPR , false )
226
236
t . equal ( ci . name , 'Buildkite' )
227
237
t . equal ( ci . BUILDKITE , true )
238
+ t . equal ( ci . id , 'BUILDKITE' )
228
239
assertVendorConstants ( 'BUILDKITE' , ci , t )
229
240
230
241
delete process . env . BUILDKITE
@@ -244,6 +255,7 @@ test('CircleCI - PR', function (t) {
244
255
t . equal ( ci . isPR , true )
245
256
t . equal ( ci . name , 'CircleCI' )
246
257
t . equal ( ci . CIRCLE , true )
258
+ t . equal ( ci . id , 'CIRCLE' )
247
259
assertVendorConstants ( 'CIRCLE' , ci , t )
248
260
249
261
delete process . env . CIRCLECI
@@ -262,6 +274,7 @@ test('CircleCI - Not PR', function (t) {
262
274
t . equal ( ci . isPR , false )
263
275
t . equal ( ci . name , 'CircleCI' )
264
276
t . equal ( ci . CIRCLE , true )
277
+ t . equal ( ci . id , 'CIRCLE' )
265
278
assertVendorConstants ( 'CIRCLE' , ci , t )
266
279
267
280
delete process . env . CIRCLECI
@@ -280,6 +293,7 @@ test('Cirrus CI - PR', function (t) {
280
293
t . equal ( ci . isPR , true )
281
294
t . equal ( ci . name , 'Cirrus CI' )
282
295
t . equal ( ci . CIRRUS , true )
296
+ t . equal ( ci . id , 'CIRRUS' )
283
297
assertVendorConstants ( 'CIRRUS' , ci , t )
284
298
285
299
delete process . env . CIRRUS_CI
@@ -298,6 +312,7 @@ test('Cirrus CI - Not PR', function (t) {
298
312
t . equal ( ci . isPR , false )
299
313
t . equal ( ci . name , 'Cirrus CI' )
300
314
t . equal ( ci . CIRRUS , true )
315
+ t . equal ( ci . id , 'CIRRUS' )
301
316
assertVendorConstants ( 'CIRRUS' , ci , t )
302
317
303
318
delete process . env . CIRRUS_CI
@@ -316,6 +331,7 @@ test('Codefresh - PR', function (t) {
316
331
t . equal ( ci . isPR , true )
317
332
t . equal ( ci . name , 'Codefresh' )
318
333
t . equal ( ci . CODEFRESH , true )
334
+ t . equal ( ci . id , 'CODEFRESH' )
319
335
assertVendorConstants ( 'CODEFRESH' , ci , t )
320
336
321
337
delete process . env . CF_BUILD_ID
@@ -334,6 +350,7 @@ test('Codefresh - Not PR', function (t) {
334
350
t . equal ( ci . isPR , false )
335
351
t . equal ( ci . name , 'Codefresh' )
336
352
t . equal ( ci . CODEFRESH , true )
353
+ t . equal ( ci . id , 'CODEFRESH' )
337
354
assertVendorConstants ( 'CODEFRESH' , ci , t )
338
355
339
356
delete process . env . CF_BUILD_ID
@@ -352,6 +369,7 @@ test('LayerCI - PR', function (t) {
352
369
t . equal ( ci . isPR , true )
353
370
t . equal ( ci . name , 'LayerCI' )
354
371
t . equal ( ci . LAYERCI , true )
372
+ t . equal ( ci . id , 'LAYERCI' )
355
373
assertVendorConstants ( 'LAYERCI' , ci , t )
356
374
357
375
delete process . env . LAYERCI
@@ -370,6 +388,7 @@ test('LayerCI - Not PR', function (t) {
370
388
t . equal ( ci . isPR , false )
371
389
t . equal ( ci . name , 'LayerCI' )
372
390
t . equal ( ci . LAYERCI , true )
391
+ t . equal ( ci . id , 'LAYERCI' )
373
392
assertVendorConstants ( 'LAYERCI' , ci , t )
374
393
375
394
delete process . env . LAYERCI
@@ -386,6 +405,7 @@ test('Appcircle', function (t) {
386
405
t . equal ( ci . isCI , true )
387
406
t . equal ( ci . name , 'Appcircle' )
388
407
t . equal ( ci . APPCIRCLE , true )
408
+ t . equal ( ci . id , 'APPCIRCLE' )
389
409
assertVendorConstants ( 'APPCIRCLE' , ci , t )
390
410
391
411
delete process . env . AC_APPCIRCLE
@@ -404,6 +424,7 @@ test('Render - PR', function (t) {
404
424
t . equal ( ci . isPR , true )
405
425
t . equal ( ci . name , 'Render' )
406
426
t . equal ( ci . RENDER , true )
427
+ t . equal ( ci . id , 'RENDER' )
407
428
assertVendorConstants ( 'RENDER' , ci , t )
408
429
409
430
delete process . env . RENDER
@@ -423,6 +444,7 @@ test('Render - Not PR', function (t) {
423
444
t . equal ( ci . isPR , false )
424
445
t . equal ( ci . name , 'Render' )
425
446
t . equal ( ci . RENDER , true )
447
+ t . equal ( ci . id , 'RENDER' )
426
448
assertVendorConstants ( 'RENDER' , ci , t )
427
449
428
450
delete process . env . RENDER
@@ -442,6 +464,7 @@ test('Semaphore - PR', function (t) {
442
464
t . equal ( ci . isPR , true )
443
465
t . equal ( ci . name , 'Semaphore' )
444
466
t . equal ( ci . SEMAPHORE , true )
467
+ t . equal ( ci . id , 'SEMAPHORE' )
445
468
assertVendorConstants ( 'SEMAPHORE' , ci , t )
446
469
447
470
delete process . env . SEMAPHORE
@@ -460,6 +483,7 @@ test('Semaphore - Not PR', function (t) {
460
483
t . equal ( ci . isPR , false )
461
484
t . equal ( ci . name , 'Semaphore' )
462
485
t . equal ( ci . SEMAPHORE , true )
486
+ t . equal ( ci . id , 'SEMAPHORE' )
463
487
assertVendorConstants ( 'SEMAPHORE' , ci , t )
464
488
465
489
delete process . env . SEMAPHORE
@@ -478,6 +502,7 @@ test('Travis CI - PR', function (t) {
478
502
t . equal ( ci . isPR , true )
479
503
t . equal ( ci . name , 'Travis CI' )
480
504
t . equal ( ci . TRAVIS , true )
505
+ t . equal ( ci . id , 'TRAVIS' )
481
506
assertVendorConstants ( 'TRAVIS' , ci , t )
482
507
483
508
delete process . env . TRAVIS
@@ -497,6 +522,7 @@ test('Travis CI - Not PR', function (t) {
497
522
t . equal ( ci . isPR , false )
498
523
t . equal ( ci . name , 'Travis CI' )
499
524
t . equal ( ci . TRAVIS , true )
525
+ t . equal ( ci . id , 'TRAVIS' )
500
526
assertVendorConstants ( 'TRAVIS' , ci , t )
501
527
502
528
delete process . env . TRAVIS
@@ -516,6 +542,7 @@ test('Netlify CI - PR', function (t) {
516
542
t . equal ( ci . isPR , true )
517
543
t . equal ( ci . name , 'Netlify CI' )
518
544
t . equal ( ci . NETLIFY , true )
545
+ t . equal ( ci . id , 'NETLIFY' )
519
546
assertVendorConstants ( 'NETLIFY' , ci , t )
520
547
521
548
delete process . env . NETLIFY
@@ -535,6 +562,7 @@ test('Netlify CI - Not PR', function (t) {
535
562
t . equal ( ci . isPR , false )
536
563
t . equal ( ci . name , 'Netlify CI' )
537
564
t . equal ( ci . NETLIFY , true )
565
+ t . equal ( ci . id , 'NETLIFY' )
538
566
assertVendorConstants ( 'NETLIFY' , ci , t )
539
567
540
568
delete process . env . NETLIFY
@@ -553,6 +581,7 @@ test('Vercel - NOW_BUILDER', function (t) {
553
581
t . equal ( ci . isPR , false )
554
582
t . equal ( ci . name , 'Vercel' )
555
583
t . equal ( ci . VERCEL , true )
584
+ t . equal ( ci . id , 'VERCEL' )
556
585
assertVendorConstants ( 'VERCEL' , ci , t )
557
586
558
587
delete process . env . NOW_BUILDER
@@ -570,6 +599,7 @@ test('Vercel - VERCEL', function (t) {
570
599
t . equal ( ci . isPR , false )
571
600
t . equal ( ci . name , 'Vercel' )
572
601
t . equal ( ci . VERCEL , true )
602
+ t . equal ( ci . id , 'VERCEL' )
573
603
assertVendorConstants ( 'VERCEL' , ci , t )
574
604
575
605
delete process . env . VERCEL
@@ -588,6 +618,7 @@ test('Vercel - PR', function (t) {
588
618
t . equal ( ci . isPR , true )
589
619
t . equal ( ci . name , 'Vercel' )
590
620
t . equal ( ci . VERCEL , true )
621
+ t . equal ( ci . id , 'VERCEL' )
591
622
assertVendorConstants ( 'VERCEL' , ci , t )
592
623
593
624
delete process . env . VERCEL
@@ -606,6 +637,7 @@ test('Nevercode - PR', function (t) {
606
637
t . equal ( ci . isPR , true )
607
638
t . equal ( ci . name , 'Nevercode' )
608
639
t . equal ( ci . NEVERCODE , true )
640
+ t . equal ( ci . id , 'NEVERCODE' )
609
641
assertVendorConstants ( 'NEVERCODE' , ci , t )
610
642
611
643
delete process . env . NEVERCODE
@@ -625,6 +657,7 @@ test('Nevercode - Not PR', function (t) {
625
657
t . equal ( ci . isPR , false )
626
658
t . equal ( ci . name , 'Nevercode' )
627
659
t . equal ( ci . NEVERCODE , true )
660
+ t . equal ( ci . id , 'NEVERCODE' )
628
661
assertVendorConstants ( 'NEVERCODE' , ci , t )
629
662
630
663
delete process . env . NEVERCODE
@@ -643,6 +676,7 @@ test('Expo Application Services', function (t) {
643
676
t . equal ( ci . isPR , null )
644
677
t . equal ( ci . name , 'Expo Application Services' )
645
678
t . equal ( ci . EAS , true )
679
+ t . equal ( ci . id , 'EAS' )
646
680
assertVendorConstants ( 'EAS' , ci , t )
647
681
648
682
delete process . env . EAS_BUILD
@@ -661,6 +695,7 @@ test('GitHub Actions - PR', function (t) {
661
695
t . equal ( ci . isPR , true )
662
696
t . equal ( ci . name , 'GitHub Actions' )
663
697
t . equal ( ci . GITHUB_ACTIONS , true )
698
+ t . equal ( ci . id , 'GITHUB_ACTIONS' )
664
699
assertVendorConstants ( 'GITHUB_ACTIONS' , ci , t )
665
700
666
701
delete process . env . GITHUB_ACTIONS
@@ -680,6 +715,7 @@ test('GitHub Actions - Not PR', function (t) {
680
715
t . equal ( ci . isPR , false )
681
716
t . equal ( ci . name , 'GitHub Actions' )
682
717
t . equal ( ci . GITHUB_ACTIONS , true )
718
+ t . equal ( ci . id , 'GITHUB_ACTIONS' )
683
719
assertVendorConstants ( 'GITHUB_ACTIONS' , ci , t )
684
720
685
721
delete process . env . GITHUB_ACTIONS
@@ -699,6 +735,7 @@ test('Screwdriver - PR', function (t) {
699
735
t . equal ( ci . isPR , true )
700
736
t . equal ( ci . name , 'Screwdriver' )
701
737
t . equal ( ci . SCREWDRIVER , true )
738
+ t . equal ( ci . id , 'SCREWDRIVER' )
702
739
assertVendorConstants ( 'SCREWDRIVER' , ci , t )
703
740
704
741
delete process . env . SCREWDRIVER
@@ -718,6 +755,7 @@ test('Screwdriver - Not PR', function (t) {
718
755
t . equal ( ci . isPR , false )
719
756
t . equal ( ci . name , 'Screwdriver' )
720
757
t . equal ( ci . SCREWDRIVER , true )
758
+ t . equal ( ci . id , 'SCREWDRIVER' )
721
759
assertVendorConstants ( 'SCREWDRIVER' , ci , t )
722
760
723
761
delete process . env . SCREWDRIVER
@@ -736,6 +774,7 @@ test('Visual Studio App Center', function (t) {
736
774
// t.equal(ci.isPR, false)
737
775
t . equal ( ci . name , 'Visual Studio App Center' )
738
776
t . equal ( ci . APPCENTER , true )
777
+ t . equal ( ci . id , 'APPCENTER' )
739
778
assertVendorConstants ( 'APPCENTER' , ci , t )
740
779
741
780
delete process . env . APPCENTER_BUILD_ID
@@ -754,6 +793,7 @@ test('Codemagic - PR', function (t) {
754
793
t . equal ( ci . isPR , true )
755
794
t . equal ( ci . name , 'Codemagic' )
756
795
t . equal ( ci . CODEMAGIC , true )
796
+ t . equal ( ci . id , 'CODEMAGIC' )
757
797
assertVendorConstants ( 'CODEMAGIC' , ci , t )
758
798
759
799
delete process . env . CM_BUILD_ID
@@ -772,6 +812,7 @@ test('Codemagic - Not PR', function (t) {
772
812
t . equal ( ci . isPR , false )
773
813
t . equal ( ci . name , 'Codemagic' )
774
814
t . equal ( ci . CODEMAGIC , true )
815
+ t . equal ( ci . id , 'CODEMAGIC' )
775
816
assertVendorConstants ( 'CODEMAGIC' , ci , t )
776
817
777
818
delete process . env . CM_BUILD_ID
@@ -790,6 +831,7 @@ test('Xcode Cloud - PR', function (t) {
790
831
t . equal ( ci . isPR , true )
791
832
t . equal ( ci . name , 'Xcode Cloud' )
792
833
t . equal ( ci . XCODE_CLOUD , true )
834
+ t . equal ( ci . id , 'XCODE_CLOUD' )
793
835
assertVendorConstants ( 'XCODE_CLOUD' , ci , t )
794
836
795
837
delete process . env . CI_XCODE_PROJECT
@@ -808,6 +850,7 @@ test('Xcode Cloud - Not PR', function (t) {
808
850
t . equal ( ci . isPR , false )
809
851
t . equal ( ci . name , 'Xcode Cloud' )
810
852
t . equal ( ci . XCODE_CLOUD , true )
853
+ t . equal ( ci . id , 'XCODE_CLOUD' )
811
854
assertVendorConstants ( 'XCODE_CLOUD' , ci , t )
812
855
813
856
delete process . env . CI_XCODE_PROJECT
@@ -825,6 +868,7 @@ test('Xcode Server - Not PR', function (t) {
825
868
// t.equal(ci.isPR, false)
826
869
t . equal ( ci . name , 'Xcode Server' )
827
870
t . equal ( ci . XCODE_SERVER , true )
871
+ t . equal ( ci . id , 'XCODE_SERVER' )
828
872
assertVendorConstants ( 'XCODE_SERVER' , ci , t )
829
873
830
874
delete process . env . XCS
@@ -842,6 +886,7 @@ test('Heroku', function (t) {
842
886
t . equal ( ci . isCI , true )
843
887
t . equal ( ci . name , 'Heroku' )
844
888
t . equal ( ci . HEROKU , true )
889
+ t . equal ( ci . id , 'HEROKU' )
845
890
assertVendorConstants ( 'HEROKU' , ci , t )
846
891
847
892
process . env . NODE = realNode
@@ -857,6 +902,7 @@ test('Sourcehit', function (t) {
857
902
t . equal ( ci . isCI , true )
858
903
t . equal ( ci . name , 'Sourcehut' )
859
904
t . equal ( ci . SOURCEHUT , true )
905
+ t . equal ( ci . id , 'SOURCEHUT' )
860
906
assertVendorConstants ( 'SOURCEHUT' , ci , t )
861
907
862
908
delete process . env . CI_NAME
@@ -873,6 +919,7 @@ test('ReleaseHub', function (t) {
873
919
t . equal ( ci . isCI , true )
874
920
t . equal ( ci . name , 'ReleaseHub' )
875
921
t . equal ( ci . RELEASEHUB , true )
922
+ t . equal ( ci . id , 'RELEASEHUB' )
876
923
assertVendorConstants ( 'RELEASEHUB' , ci , t )
877
924
878
925
delete process . env . RELEASE_BUILD_ID
@@ -889,6 +936,7 @@ test('Gitea Actions', function (t) {
889
936
t . equal ( ci . isCI , true )
890
937
t . equal ( ci . name , 'Gitea Actions' )
891
938
t . equal ( ci . GITEA_ACTIONS , true )
939
+ t . equal ( ci . id , 'GITEA_ACTIONS' )
892
940
assertVendorConstants ( 'GITEA_ACTIONS' , ci , t )
893
941
894
942
delete process . env . GITEA_ACTIONS
@@ -907,6 +955,7 @@ test('Agola CI', function (t) {
907
955
t . equal ( ci . isPR , false )
908
956
t . equal ( ci . name , 'Agola CI' )
909
957
t . equal ( ci . AGOLA , true )
958
+ t . equal ( ci . id , 'AGOLA' )
910
959
assertVendorConstants ( 'AGOLA' , ci , t )
911
960
912
961
delete process . env . AGOLA_GIT_REF
@@ -926,6 +975,7 @@ test('Agola CI - PR', function (t) {
926
975
t . equal ( ci . isPR , true )
927
976
t . equal ( ci . name , 'Agola CI' )
928
977
t . equal ( ci . AGOLA , true )
978
+ t . equal ( ci . id , 'AGOLA' )
929
979
assertVendorConstants ( 'AGOLA' , ci , t )
930
980
931
981
delete process . env . AGOLA_GIT_REF
@@ -945,6 +995,7 @@ test('Vela', function (t) {
945
995
t . equal ( ci . isPR , false )
946
996
t . equal ( ci . name , 'Vela' )
947
997
t . equal ( ci . VELA , true )
998
+ t . equal ( ci . id , 'VELA' )
948
999
assertVendorConstants ( 'VELA' , ci , t )
949
1000
950
1001
delete process . env . VELA
@@ -964,6 +1015,7 @@ test('Vela - PR', function (t) {
964
1015
t . equal ( ci . isPR , true )
965
1016
t . equal ( ci . name , 'Vela' )
966
1017
t . equal ( ci . VELA , true )
1018
+ t . equal ( ci . id , 'VELA' )
967
1019
assertVendorConstants ( 'VELA' , ci , t )
968
1020
969
1021
delete process . env . VELA
@@ -981,6 +1033,7 @@ test('Prow', function (t) {
981
1033
t . equal ( ci . isCI , true )
982
1034
t . equal ( ci . name , 'Prow' )
983
1035
t . equal ( ci . PROW , true )
1036
+ t . equal ( ci . id , 'PROW' )
984
1037
assertVendorConstants ( 'PROW' , ci , t )
985
1038
986
1039
delete process . env . PROW_JOB_ID
@@ -997,6 +1050,7 @@ test('Earthly CI', function (t) {
997
1050
t . equal ( ci . isCI , true )
998
1051
t . equal ( ci . name , 'Earthly' )
999
1052
t . equal ( ci . EARTHLY , true )
1053
+ t . equal ( ci . id , 'EARTHLY' )
1000
1054
assertVendorConstants ( 'EARTHLY' , ci , t )
1001
1055
1002
1056
delete process . env . EARTHLY_CI
@@ -1013,6 +1067,7 @@ test('AWS Codebuild', function (t) {
1013
1067
t . equal ( ci . isCI , true )
1014
1068
t . equal ( ci . name , 'AWS CodeBuild' )
1015
1069
t . equal ( ci . CODEBUILD , true )
1070
+ t . equal ( ci . id , 'CODEBUILD' )
1016
1071
assertVendorConstants ( 'CODEBUILD' , ci , t )
1017
1072
1018
1073
delete process . env . CODEBUILD_BUILD_ARN
@@ -1031,6 +1086,7 @@ test('AWS Codebuild - PR', function (t) {
1031
1086
t . equal ( ci . isPR , true )
1032
1087
t . equal ( ci . name , 'AWS CodeBuild' )
1033
1088
t . equal ( ci . CODEBUILD , true )
1089
+ t . equal ( ci . id , 'CODEBUILD' )
1034
1090
assertVendorConstants ( 'CODEBUILD' , ci , t )
1035
1091
1036
1092
delete process . env . CODEBUILD_BUILD_ARN
0 commit comments