doc-detective-common 3.0.8 → 3.1.0-dev.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.
@@ -129,6 +129,10 @@
129
129
  ],
130
130
  "default": "info"
131
131
  },
132
+ "allowUnsafeMarkup": {
133
+ "type": "boolean",
134
+ "description": "Whether or not to run potentially unsafe markup detected in input files."
135
+ },
132
136
  "runOn": {
133
137
  "type": "array",
134
138
  "description": "Contexts to run the test in. Overrides contexts defined at the config and spec levels.",
@@ -538,8 +542,17 @@
538
542
  "$comment": "Custom mode: Extend predefined templates or write whole new ones.",
539
543
  "title": "File type (custom)",
540
544
  "type": "object",
541
- "required": [
542
- "extensions"
545
+ "anyOf": [
546
+ {
547
+ "required": [
548
+ "extensions"
549
+ ]
550
+ },
551
+ {
552
+ "required": [
553
+ "extends"
554
+ ]
555
+ }
543
556
  ],
544
557
  "properties": {
545
558
  "name": {
@@ -547,7 +560,6 @@
547
560
  "type": "string"
548
561
  },
549
562
  "extends": {
550
- "$comment": "In development",
551
563
  "description": "Base template to extend.",
552
564
  "type": "string",
553
565
  "enum": [
@@ -783,6 +795,11 @@
783
795
  "type": "string",
784
796
  "description": "Description of the step."
785
797
  },
798
+ "unsafe": {
799
+ "type": "boolean",
800
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
801
+ "default": false
802
+ },
786
803
  "outputs": {
787
804
  "type": "object",
788
805
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -825,6 +842,11 @@
825
842
  "type": "string",
826
843
  "description": "Description of the step."
827
844
  },
845
+ "unsafe": {
846
+ "type": "boolean",
847
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
848
+ "default": false
849
+ },
828
850
  "outputs": {
829
851
  "type": "object",
830
852
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -875,6 +897,11 @@
875
897
  "type": "string",
876
898
  "description": "Description of the step."
877
899
  },
900
+ "unsafe": {
901
+ "type": "boolean",
902
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
903
+ "default": false
904
+ },
878
905
  "outputs": {
879
906
  "type": "object",
880
907
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -1081,6 +1108,11 @@
1081
1108
  "type": "string",
1082
1109
  "description": "Description of the step."
1083
1110
  },
1111
+ "unsafe": {
1112
+ "type": "boolean",
1113
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
1114
+ "default": false
1115
+ },
1084
1116
  "outputs": {
1085
1117
  "type": "object",
1086
1118
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -1258,6 +1290,11 @@
1258
1290
  "type": "string",
1259
1291
  "description": "Description of the step."
1260
1292
  },
1293
+ "unsafe": {
1294
+ "type": "boolean",
1295
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
1296
+ "default": false
1297
+ },
1261
1298
  "outputs": {
1262
1299
  "type": "object",
1263
1300
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -2049,6 +2086,11 @@
2049
2086
  "type": "string",
2050
2087
  "description": "Description of the step."
2051
2088
  },
2089
+ "unsafe": {
2090
+ "type": "boolean",
2091
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
2092
+ "default": false
2093
+ },
2052
2094
  "outputs": {
2053
2095
  "type": "object",
2054
2096
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -2201,6 +2243,11 @@
2201
2243
  "type": "string",
2202
2244
  "description": "Description of the step."
2203
2245
  },
2246
+ "unsafe": {
2247
+ "type": "boolean",
2248
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
2249
+ "default": false
2250
+ },
2204
2251
  "outputs": {
2205
2252
  "type": "object",
2206
2253
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -3194,6 +3241,11 @@
3194
3241
  "type": "string",
3195
3242
  "description": "Description of the step."
3196
3243
  },
3244
+ "unsafe": {
3245
+ "type": "boolean",
3246
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
3247
+ "default": false
3248
+ },
3197
3249
  "outputs": {
3198
3250
  "type": "object",
3199
3251
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -3491,6 +3543,11 @@
3491
3543
  "type": "string",
3492
3544
  "description": "Description of the step."
3493
3545
  },
3546
+ "unsafe": {
3547
+ "type": "boolean",
3548
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
3549
+ "default": false
3550
+ },
3494
3551
  "outputs": {
3495
3552
  "type": "object",
3496
3553
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -3774,6 +3831,11 @@
3774
3831
  "type": "string",
3775
3832
  "description": "Description of the step."
3776
3833
  },
3834
+ "unsafe": {
3835
+ "type": "boolean",
3836
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
3837
+ "default": false
3838
+ },
3777
3839
  "outputs": {
3778
3840
  "type": "object",
3779
3841
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -3985,6 +4047,11 @@
3985
4047
  "type": "string",
3986
4048
  "description": "Description of the step."
3987
4049
  },
4050
+ "unsafe": {
4051
+ "type": "boolean",
4052
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
4053
+ "default": false
4054
+ },
3988
4055
  "outputs": {
3989
4056
  "type": "object",
3990
4057
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -4423,6 +4490,11 @@
4423
4490
  "type": "string",
4424
4491
  "description": "Description of the step."
4425
4492
  },
4493
+ "unsafe": {
4494
+ "type": "boolean",
4495
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
4496
+ "default": false
4497
+ },
4426
4498
  "outputs": {
4427
4499
  "type": "object",
4428
4500
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -4585,6 +4657,11 @@
4585
4657
  "type": "string",
4586
4658
  "description": "Description of the step."
4587
4659
  },
4660
+ "unsafe": {
4661
+ "type": "boolean",
4662
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
4663
+ "default": false
4664
+ },
4588
4665
  "outputs": {
4589
4666
  "type": "object",
4590
4667
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -4660,6 +4737,11 @@
4660
4737
  "type": "string",
4661
4738
  "description": "Description of the step."
4662
4739
  },
4740
+ "unsafe": {
4741
+ "type": "boolean",
4742
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
4743
+ "default": false
4744
+ },
4663
4745
  "outputs": {
4664
4746
  "type": "object",
4665
4747
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -4730,6 +4812,11 @@
4730
4812
  "type": "string",
4731
4813
  "description": "Description of the step."
4732
4814
  },
4815
+ "unsafe": {
4816
+ "type": "boolean",
4817
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
4818
+ "default": false
4819
+ },
4733
4820
  "outputs": {
4734
4821
  "type": "object",
4735
4822
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -5832,6 +5919,11 @@
5832
5919
  "type": "string",
5833
5920
  "description": "Description of the step."
5834
5921
  },
5922
+ "unsafe": {
5923
+ "type": "boolean",
5924
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
5925
+ "default": false
5926
+ },
5835
5927
  "outputs": {
5836
5928
  "type": "object",
5837
5929
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -5874,6 +5966,11 @@
5874
5966
  "type": "string",
5875
5967
  "description": "Description of the step."
5876
5968
  },
5969
+ "unsafe": {
5970
+ "type": "boolean",
5971
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
5972
+ "default": false
5973
+ },
5877
5974
  "outputs": {
5878
5975
  "type": "object",
5879
5976
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -5924,6 +6021,11 @@
5924
6021
  "type": "string",
5925
6022
  "description": "Description of the step."
5926
6023
  },
6024
+ "unsafe": {
6025
+ "type": "boolean",
6026
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
6027
+ "default": false
6028
+ },
5927
6029
  "outputs": {
5928
6030
  "type": "object",
5929
6031
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -6130,6 +6232,11 @@
6130
6232
  "type": "string",
6131
6233
  "description": "Description of the step."
6132
6234
  },
6235
+ "unsafe": {
6236
+ "type": "boolean",
6237
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
6238
+ "default": false
6239
+ },
6133
6240
  "outputs": {
6134
6241
  "type": "object",
6135
6242
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -6307,6 +6414,11 @@
6307
6414
  "type": "string",
6308
6415
  "description": "Description of the step."
6309
6416
  },
6417
+ "unsafe": {
6418
+ "type": "boolean",
6419
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
6420
+ "default": false
6421
+ },
6310
6422
  "outputs": {
6311
6423
  "type": "object",
6312
6424
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -7098,6 +7210,11 @@
7098
7210
  "type": "string",
7099
7211
  "description": "Description of the step."
7100
7212
  },
7213
+ "unsafe": {
7214
+ "type": "boolean",
7215
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
7216
+ "default": false
7217
+ },
7101
7218
  "outputs": {
7102
7219
  "type": "object",
7103
7220
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -7250,6 +7367,11 @@
7250
7367
  "type": "string",
7251
7368
  "description": "Description of the step."
7252
7369
  },
7370
+ "unsafe": {
7371
+ "type": "boolean",
7372
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
7373
+ "default": false
7374
+ },
7253
7375
  "outputs": {
7254
7376
  "type": "object",
7255
7377
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -8243,6 +8365,11 @@
8243
8365
  "type": "string",
8244
8366
  "description": "Description of the step."
8245
8367
  },
8368
+ "unsafe": {
8369
+ "type": "boolean",
8370
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
8371
+ "default": false
8372
+ },
8246
8373
  "outputs": {
8247
8374
  "type": "object",
8248
8375
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -8540,6 +8667,11 @@
8540
8667
  "type": "string",
8541
8668
  "description": "Description of the step."
8542
8669
  },
8670
+ "unsafe": {
8671
+ "type": "boolean",
8672
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
8673
+ "default": false
8674
+ },
8543
8675
  "outputs": {
8544
8676
  "type": "object",
8545
8677
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -8823,6 +8955,11 @@
8823
8955
  "type": "string",
8824
8956
  "description": "Description of the step."
8825
8957
  },
8958
+ "unsafe": {
8959
+ "type": "boolean",
8960
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
8961
+ "default": false
8962
+ },
8826
8963
  "outputs": {
8827
8964
  "type": "object",
8828
8965
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -9034,6 +9171,11 @@
9034
9171
  "type": "string",
9035
9172
  "description": "Description of the step."
9036
9173
  },
9174
+ "unsafe": {
9175
+ "type": "boolean",
9176
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
9177
+ "default": false
9178
+ },
9037
9179
  "outputs": {
9038
9180
  "type": "object",
9039
9181
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -9472,6 +9614,11 @@
9472
9614
  "type": "string",
9473
9615
  "description": "Description of the step."
9474
9616
  },
9617
+ "unsafe": {
9618
+ "type": "boolean",
9619
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
9620
+ "default": false
9621
+ },
9475
9622
  "outputs": {
9476
9623
  "type": "object",
9477
9624
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -9634,6 +9781,11 @@
9634
9781
  "type": "string",
9635
9782
  "description": "Description of the step."
9636
9783
  },
9784
+ "unsafe": {
9785
+ "type": "boolean",
9786
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
9787
+ "default": false
9788
+ },
9637
9789
  "outputs": {
9638
9790
  "type": "object",
9639
9791
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -9709,6 +9861,11 @@
9709
9861
  "type": "string",
9710
9862
  "description": "Description of the step."
9711
9863
  },
9864
+ "unsafe": {
9865
+ "type": "boolean",
9866
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
9867
+ "default": false
9868
+ },
9712
9869
  "outputs": {
9713
9870
  "type": "object",
9714
9871
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",
@@ -9779,6 +9936,11 @@
9779
9936
  "type": "string",
9780
9937
  "description": "Description of the step."
9781
9938
  },
9939
+ "unsafe": {
9940
+ "type": "boolean",
9941
+ "description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
9942
+ "default": false
9943
+ },
9782
9944
  "outputs": {
9783
9945
  "type": "object",
9784
9946
  "description": "Outputs from step processes and user-defined expressions. Use the `outputs` object to reference outputs in subsequent steps. If a user-defined output matches the key for a step-defined output, the user-defined output takes precedence.",