doc-detective-common 3.1.0-dev.1 → 3.1.0-dev.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.
- package/.github/workflows/auto-dev-release.yml +178 -0
- package/README.md +48 -0
- package/dist/schemas/config_v3.schema.json +32 -32
- package/dist/schemas/report_v3.schema.json +30 -41
- package/dist/schemas/resolvedTests_v3.schema.json +62 -73
- package/dist/schemas/spec_v3.schema.json +30 -41
- package/dist/schemas/step_v3.schema.json +15 -15
- package/dist/schemas/test_v3.schema.json +30 -41
- package/docs/auto-dev-release.md +195 -0
- package/package.json +4 -4
- package/src/schemas/output_schemas/config_v3.schema.json +32 -32
- package/src/schemas/output_schemas/report_v3.schema.json +30 -41
- package/src/schemas/output_schemas/resolvedTests_v3.schema.json +62 -73
- package/src/schemas/output_schemas/spec_v3.schema.json +30 -41
- package/src/schemas/output_schemas/step_v3.schema.json +15 -15
- package/src/schemas/output_schemas/test_v3.schema.json +30 -41
- package/src/schemas/schemas.json +199 -243
- package/src/schemas/src_schemas/config_v3.schema.json +2 -2
- package/src/schemas/src_schemas/step_v3.schema.json +1 -1
- package/src/schemas/src_schemas/test_v3.schema.json +0 -11
- package/src/validate.js +6 -48
|
@@ -130,9 +130,9 @@
|
|
|
130
130
|
"description": "Whether or not to detect steps in input files based on defined markup.",
|
|
131
131
|
"default": true
|
|
132
132
|
},
|
|
133
|
-
"
|
|
133
|
+
"allowUnsafeSteps": {
|
|
134
134
|
"type": "boolean",
|
|
135
|
-
"description": "Whether or not to run potentially unsafe
|
|
135
|
+
"description": "Whether or not to run potentially unsafe steps, such as those that might modify files or system state."
|
|
136
136
|
},
|
|
137
137
|
"logLevel": {
|
|
138
138
|
"description": "Amount of detail to output when performing an operation.",
|
|
@@ -810,7 +810,7 @@
|
|
|
810
810
|
},
|
|
811
811
|
"unsafe": {
|
|
812
812
|
"type": "boolean",
|
|
813
|
-
"description": "Whether or not the
|
|
813
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
814
814
|
"default": false
|
|
815
815
|
},
|
|
816
816
|
"outputs": {
|
|
@@ -857,7 +857,7 @@
|
|
|
857
857
|
},
|
|
858
858
|
"unsafe": {
|
|
859
859
|
"type": "boolean",
|
|
860
|
-
"description": "Whether or not the
|
|
860
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
861
861
|
"default": false
|
|
862
862
|
},
|
|
863
863
|
"outputs": {
|
|
@@ -912,7 +912,7 @@
|
|
|
912
912
|
},
|
|
913
913
|
"unsafe": {
|
|
914
914
|
"type": "boolean",
|
|
915
|
-
"description": "Whether or not the
|
|
915
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
916
916
|
"default": false
|
|
917
917
|
},
|
|
918
918
|
"outputs": {
|
|
@@ -1123,7 +1123,7 @@
|
|
|
1123
1123
|
},
|
|
1124
1124
|
"unsafe": {
|
|
1125
1125
|
"type": "boolean",
|
|
1126
|
-
"description": "Whether or not the
|
|
1126
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
1127
1127
|
"default": false
|
|
1128
1128
|
},
|
|
1129
1129
|
"outputs": {
|
|
@@ -1305,7 +1305,7 @@
|
|
|
1305
1305
|
},
|
|
1306
1306
|
"unsafe": {
|
|
1307
1307
|
"type": "boolean",
|
|
1308
|
-
"description": "Whether or not the
|
|
1308
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
1309
1309
|
"default": false
|
|
1310
1310
|
},
|
|
1311
1311
|
"outputs": {
|
|
@@ -2101,7 +2101,7 @@
|
|
|
2101
2101
|
},
|
|
2102
2102
|
"unsafe": {
|
|
2103
2103
|
"type": "boolean",
|
|
2104
|
-
"description": "Whether or not the
|
|
2104
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
2105
2105
|
"default": false
|
|
2106
2106
|
},
|
|
2107
2107
|
"outputs": {
|
|
@@ -2258,7 +2258,7 @@
|
|
|
2258
2258
|
},
|
|
2259
2259
|
"unsafe": {
|
|
2260
2260
|
"type": "boolean",
|
|
2261
|
-
"description": "Whether or not the
|
|
2261
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
2262
2262
|
"default": false
|
|
2263
2263
|
},
|
|
2264
2264
|
"outputs": {
|
|
@@ -3256,7 +3256,7 @@
|
|
|
3256
3256
|
},
|
|
3257
3257
|
"unsafe": {
|
|
3258
3258
|
"type": "boolean",
|
|
3259
|
-
"description": "Whether or not the
|
|
3259
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
3260
3260
|
"default": false
|
|
3261
3261
|
},
|
|
3262
3262
|
"outputs": {
|
|
@@ -3558,7 +3558,7 @@
|
|
|
3558
3558
|
},
|
|
3559
3559
|
"unsafe": {
|
|
3560
3560
|
"type": "boolean",
|
|
3561
|
-
"description": "Whether or not the
|
|
3561
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
3562
3562
|
"default": false
|
|
3563
3563
|
},
|
|
3564
3564
|
"outputs": {
|
|
@@ -3846,7 +3846,7 @@
|
|
|
3846
3846
|
},
|
|
3847
3847
|
"unsafe": {
|
|
3848
3848
|
"type": "boolean",
|
|
3849
|
-
"description": "Whether or not the
|
|
3849
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
3850
3850
|
"default": false
|
|
3851
3851
|
},
|
|
3852
3852
|
"outputs": {
|
|
@@ -4062,7 +4062,7 @@
|
|
|
4062
4062
|
},
|
|
4063
4063
|
"unsafe": {
|
|
4064
4064
|
"type": "boolean",
|
|
4065
|
-
"description": "Whether or not the
|
|
4065
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
4066
4066
|
"default": false
|
|
4067
4067
|
},
|
|
4068
4068
|
"outputs": {
|
|
@@ -4505,7 +4505,7 @@
|
|
|
4505
4505
|
},
|
|
4506
4506
|
"unsafe": {
|
|
4507
4507
|
"type": "boolean",
|
|
4508
|
-
"description": "Whether or not the
|
|
4508
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
4509
4509
|
"default": false
|
|
4510
4510
|
},
|
|
4511
4511
|
"outputs": {
|
|
@@ -4672,7 +4672,7 @@
|
|
|
4672
4672
|
},
|
|
4673
4673
|
"unsafe": {
|
|
4674
4674
|
"type": "boolean",
|
|
4675
|
-
"description": "Whether or not the
|
|
4675
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
4676
4676
|
"default": false
|
|
4677
4677
|
},
|
|
4678
4678
|
"outputs": {
|
|
@@ -4752,7 +4752,7 @@
|
|
|
4752
4752
|
},
|
|
4753
4753
|
"unsafe": {
|
|
4754
4754
|
"type": "boolean",
|
|
4755
|
-
"description": "Whether or not the
|
|
4755
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
4756
4756
|
"default": false
|
|
4757
4757
|
},
|
|
4758
4758
|
"outputs": {
|
|
@@ -4827,7 +4827,7 @@
|
|
|
4827
4827
|
},
|
|
4828
4828
|
"unsafe": {
|
|
4829
4829
|
"type": "boolean",
|
|
4830
|
-
"description": "Whether or not the
|
|
4830
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
4831
4831
|
"default": false
|
|
4832
4832
|
},
|
|
4833
4833
|
"outputs": {
|
|
@@ -5934,7 +5934,7 @@
|
|
|
5934
5934
|
},
|
|
5935
5935
|
"unsafe": {
|
|
5936
5936
|
"type": "boolean",
|
|
5937
|
-
"description": "Whether or not the
|
|
5937
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
5938
5938
|
"default": false
|
|
5939
5939
|
},
|
|
5940
5940
|
"outputs": {
|
|
@@ -5981,7 +5981,7 @@
|
|
|
5981
5981
|
},
|
|
5982
5982
|
"unsafe": {
|
|
5983
5983
|
"type": "boolean",
|
|
5984
|
-
"description": "Whether or not the
|
|
5984
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
5985
5985
|
"default": false
|
|
5986
5986
|
},
|
|
5987
5987
|
"outputs": {
|
|
@@ -6036,7 +6036,7 @@
|
|
|
6036
6036
|
},
|
|
6037
6037
|
"unsafe": {
|
|
6038
6038
|
"type": "boolean",
|
|
6039
|
-
"description": "Whether or not the
|
|
6039
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
6040
6040
|
"default": false
|
|
6041
6041
|
},
|
|
6042
6042
|
"outputs": {
|
|
@@ -6247,7 +6247,7 @@
|
|
|
6247
6247
|
},
|
|
6248
6248
|
"unsafe": {
|
|
6249
6249
|
"type": "boolean",
|
|
6250
|
-
"description": "Whether or not the
|
|
6250
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
6251
6251
|
"default": false
|
|
6252
6252
|
},
|
|
6253
6253
|
"outputs": {
|
|
@@ -6429,7 +6429,7 @@
|
|
|
6429
6429
|
},
|
|
6430
6430
|
"unsafe": {
|
|
6431
6431
|
"type": "boolean",
|
|
6432
|
-
"description": "Whether or not the
|
|
6432
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
6433
6433
|
"default": false
|
|
6434
6434
|
},
|
|
6435
6435
|
"outputs": {
|
|
@@ -7225,7 +7225,7 @@
|
|
|
7225
7225
|
},
|
|
7226
7226
|
"unsafe": {
|
|
7227
7227
|
"type": "boolean",
|
|
7228
|
-
"description": "Whether or not the
|
|
7228
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
7229
7229
|
"default": false
|
|
7230
7230
|
},
|
|
7231
7231
|
"outputs": {
|
|
@@ -7382,7 +7382,7 @@
|
|
|
7382
7382
|
},
|
|
7383
7383
|
"unsafe": {
|
|
7384
7384
|
"type": "boolean",
|
|
7385
|
-
"description": "Whether or not the
|
|
7385
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
7386
7386
|
"default": false
|
|
7387
7387
|
},
|
|
7388
7388
|
"outputs": {
|
|
@@ -8380,7 +8380,7 @@
|
|
|
8380
8380
|
},
|
|
8381
8381
|
"unsafe": {
|
|
8382
8382
|
"type": "boolean",
|
|
8383
|
-
"description": "Whether or not the
|
|
8383
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
8384
8384
|
"default": false
|
|
8385
8385
|
},
|
|
8386
8386
|
"outputs": {
|
|
@@ -8682,7 +8682,7 @@
|
|
|
8682
8682
|
},
|
|
8683
8683
|
"unsafe": {
|
|
8684
8684
|
"type": "boolean",
|
|
8685
|
-
"description": "Whether or not the
|
|
8685
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
8686
8686
|
"default": false
|
|
8687
8687
|
},
|
|
8688
8688
|
"outputs": {
|
|
@@ -8970,7 +8970,7 @@
|
|
|
8970
8970
|
},
|
|
8971
8971
|
"unsafe": {
|
|
8972
8972
|
"type": "boolean",
|
|
8973
|
-
"description": "Whether or not the
|
|
8973
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
8974
8974
|
"default": false
|
|
8975
8975
|
},
|
|
8976
8976
|
"outputs": {
|
|
@@ -9186,7 +9186,7 @@
|
|
|
9186
9186
|
},
|
|
9187
9187
|
"unsafe": {
|
|
9188
9188
|
"type": "boolean",
|
|
9189
|
-
"description": "Whether or not the
|
|
9189
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
9190
9190
|
"default": false
|
|
9191
9191
|
},
|
|
9192
9192
|
"outputs": {
|
|
@@ -9629,7 +9629,7 @@
|
|
|
9629
9629
|
},
|
|
9630
9630
|
"unsafe": {
|
|
9631
9631
|
"type": "boolean",
|
|
9632
|
-
"description": "Whether or not the
|
|
9632
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
9633
9633
|
"default": false
|
|
9634
9634
|
},
|
|
9635
9635
|
"outputs": {
|
|
@@ -9796,7 +9796,7 @@
|
|
|
9796
9796
|
},
|
|
9797
9797
|
"unsafe": {
|
|
9798
9798
|
"type": "boolean",
|
|
9799
|
-
"description": "Whether or not the
|
|
9799
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
9800
9800
|
"default": false
|
|
9801
9801
|
},
|
|
9802
9802
|
"outputs": {
|
|
@@ -9876,7 +9876,7 @@
|
|
|
9876
9876
|
},
|
|
9877
9877
|
"unsafe": {
|
|
9878
9878
|
"type": "boolean",
|
|
9879
|
-
"description": "Whether or not the
|
|
9879
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
9880
9880
|
"default": false
|
|
9881
9881
|
},
|
|
9882
9882
|
"outputs": {
|
|
@@ -9951,7 +9951,7 @@
|
|
|
9951
9951
|
},
|
|
9952
9952
|
"unsafe": {
|
|
9953
9953
|
"type": "boolean",
|
|
9954
|
-
"description": "Whether or not the
|
|
9954
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
9955
9955
|
"default": false
|
|
9956
9956
|
},
|
|
9957
9957
|
"outputs": {
|
|
@@ -11229,11 +11229,6 @@
|
|
|
11229
11229
|
"type": "string",
|
|
11230
11230
|
"description": "Path to the content that the test is associated with."
|
|
11231
11231
|
},
|
|
11232
|
-
"unsafe": {
|
|
11233
|
-
"type": "boolean",
|
|
11234
|
-
"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.",
|
|
11235
|
-
"default": false
|
|
11236
|
-
},
|
|
11237
11232
|
"detectSteps": {
|
|
11238
11233
|
"type": "boolean",
|
|
11239
11234
|
"description": "Whether or not to detect steps in input files based on markup regex.",
|
|
@@ -11845,7 +11840,7 @@
|
|
|
11845
11840
|
},
|
|
11846
11841
|
"unsafe": {
|
|
11847
11842
|
"type": "boolean",
|
|
11848
|
-
"description": "Whether or not the
|
|
11843
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
11849
11844
|
"default": false
|
|
11850
11845
|
},
|
|
11851
11846
|
"outputs": {
|
|
@@ -11892,7 +11887,7 @@
|
|
|
11892
11887
|
},
|
|
11893
11888
|
"unsafe": {
|
|
11894
11889
|
"type": "boolean",
|
|
11895
|
-
"description": "Whether or not the
|
|
11890
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
11896
11891
|
"default": false
|
|
11897
11892
|
},
|
|
11898
11893
|
"outputs": {
|
|
@@ -11947,7 +11942,7 @@
|
|
|
11947
11942
|
},
|
|
11948
11943
|
"unsafe": {
|
|
11949
11944
|
"type": "boolean",
|
|
11950
|
-
"description": "Whether or not the
|
|
11945
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
11951
11946
|
"default": false
|
|
11952
11947
|
},
|
|
11953
11948
|
"outputs": {
|
|
@@ -12158,7 +12153,7 @@
|
|
|
12158
12153
|
},
|
|
12159
12154
|
"unsafe": {
|
|
12160
12155
|
"type": "boolean",
|
|
12161
|
-
"description": "Whether or not the
|
|
12156
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
12162
12157
|
"default": false
|
|
12163
12158
|
},
|
|
12164
12159
|
"outputs": {
|
|
@@ -12340,7 +12335,7 @@
|
|
|
12340
12335
|
},
|
|
12341
12336
|
"unsafe": {
|
|
12342
12337
|
"type": "boolean",
|
|
12343
|
-
"description": "Whether or not the
|
|
12338
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
12344
12339
|
"default": false
|
|
12345
12340
|
},
|
|
12346
12341
|
"outputs": {
|
|
@@ -13136,7 +13131,7 @@
|
|
|
13136
13131
|
},
|
|
13137
13132
|
"unsafe": {
|
|
13138
13133
|
"type": "boolean",
|
|
13139
|
-
"description": "Whether or not the
|
|
13134
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
13140
13135
|
"default": false
|
|
13141
13136
|
},
|
|
13142
13137
|
"outputs": {
|
|
@@ -13293,7 +13288,7 @@
|
|
|
13293
13288
|
},
|
|
13294
13289
|
"unsafe": {
|
|
13295
13290
|
"type": "boolean",
|
|
13296
|
-
"description": "Whether or not the
|
|
13291
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
13297
13292
|
"default": false
|
|
13298
13293
|
},
|
|
13299
13294
|
"outputs": {
|
|
@@ -14291,7 +14286,7 @@
|
|
|
14291
14286
|
},
|
|
14292
14287
|
"unsafe": {
|
|
14293
14288
|
"type": "boolean",
|
|
14294
|
-
"description": "Whether or not the
|
|
14289
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
14295
14290
|
"default": false
|
|
14296
14291
|
},
|
|
14297
14292
|
"outputs": {
|
|
@@ -14593,7 +14588,7 @@
|
|
|
14593
14588
|
},
|
|
14594
14589
|
"unsafe": {
|
|
14595
14590
|
"type": "boolean",
|
|
14596
|
-
"description": "Whether or not the
|
|
14591
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
14597
14592
|
"default": false
|
|
14598
14593
|
},
|
|
14599
14594
|
"outputs": {
|
|
@@ -14881,7 +14876,7 @@
|
|
|
14881
14876
|
},
|
|
14882
14877
|
"unsafe": {
|
|
14883
14878
|
"type": "boolean",
|
|
14884
|
-
"description": "Whether or not the
|
|
14879
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
14885
14880
|
"default": false
|
|
14886
14881
|
},
|
|
14887
14882
|
"outputs": {
|
|
@@ -15097,7 +15092,7 @@
|
|
|
15097
15092
|
},
|
|
15098
15093
|
"unsafe": {
|
|
15099
15094
|
"type": "boolean",
|
|
15100
|
-
"description": "Whether or not the
|
|
15095
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
15101
15096
|
"default": false
|
|
15102
15097
|
},
|
|
15103
15098
|
"outputs": {
|
|
@@ -15540,7 +15535,7 @@
|
|
|
15540
15535
|
},
|
|
15541
15536
|
"unsafe": {
|
|
15542
15537
|
"type": "boolean",
|
|
15543
|
-
"description": "Whether or not the
|
|
15538
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
15544
15539
|
"default": false
|
|
15545
15540
|
},
|
|
15546
15541
|
"outputs": {
|
|
@@ -15707,7 +15702,7 @@
|
|
|
15707
15702
|
},
|
|
15708
15703
|
"unsafe": {
|
|
15709
15704
|
"type": "boolean",
|
|
15710
|
-
"description": "Whether or not the
|
|
15705
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
15711
15706
|
"default": false
|
|
15712
15707
|
},
|
|
15713
15708
|
"outputs": {
|
|
@@ -15787,7 +15782,7 @@
|
|
|
15787
15782
|
},
|
|
15788
15783
|
"unsafe": {
|
|
15789
15784
|
"type": "boolean",
|
|
15790
|
-
"description": "Whether or not the
|
|
15785
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
15791
15786
|
"default": false
|
|
15792
15787
|
},
|
|
15793
15788
|
"outputs": {
|
|
@@ -15862,7 +15857,7 @@
|
|
|
15862
15857
|
},
|
|
15863
15858
|
"unsafe": {
|
|
15864
15859
|
"type": "boolean",
|
|
15865
|
-
"description": "Whether or not the
|
|
15860
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
15866
15861
|
"default": false
|
|
15867
15862
|
},
|
|
15868
15863
|
"outputs": {
|
|
@@ -16547,11 +16542,6 @@
|
|
|
16547
16542
|
]
|
|
16548
16543
|
}
|
|
16549
16544
|
},
|
|
16550
|
-
"unsafe": {
|
|
16551
|
-
"type": "boolean",
|
|
16552
|
-
"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.",
|
|
16553
|
-
"default": false
|
|
16554
|
-
},
|
|
16555
16545
|
"steps": {
|
|
16556
16546
|
"description": "Steps to perform as part of the test. Performed in the sequence defined. If one or more actions fail, the test fails. By default, if a step fails, the test stops and the remaining steps are not executed.",
|
|
16557
16547
|
"type": "array",
|
|
@@ -16586,7 +16576,7 @@
|
|
|
16586
16576
|
},
|
|
16587
16577
|
"unsafe": {
|
|
16588
16578
|
"type": "boolean",
|
|
16589
|
-
"description": "Whether or not the
|
|
16579
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
16590
16580
|
"default": false
|
|
16591
16581
|
},
|
|
16592
16582
|
"outputs": {
|
|
@@ -16633,7 +16623,7 @@
|
|
|
16633
16623
|
},
|
|
16634
16624
|
"unsafe": {
|
|
16635
16625
|
"type": "boolean",
|
|
16636
|
-
"description": "Whether or not the
|
|
16626
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
16637
16627
|
"default": false
|
|
16638
16628
|
},
|
|
16639
16629
|
"outputs": {
|
|
@@ -16688,7 +16678,7 @@
|
|
|
16688
16678
|
},
|
|
16689
16679
|
"unsafe": {
|
|
16690
16680
|
"type": "boolean",
|
|
16691
|
-
"description": "Whether or not the
|
|
16681
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
16692
16682
|
"default": false
|
|
16693
16683
|
},
|
|
16694
16684
|
"outputs": {
|
|
@@ -16899,7 +16889,7 @@
|
|
|
16899
16889
|
},
|
|
16900
16890
|
"unsafe": {
|
|
16901
16891
|
"type": "boolean",
|
|
16902
|
-
"description": "Whether or not the
|
|
16892
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
16903
16893
|
"default": false
|
|
16904
16894
|
},
|
|
16905
16895
|
"outputs": {
|
|
@@ -17081,7 +17071,7 @@
|
|
|
17081
17071
|
},
|
|
17082
17072
|
"unsafe": {
|
|
17083
17073
|
"type": "boolean",
|
|
17084
|
-
"description": "Whether or not the
|
|
17074
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
17085
17075
|
"default": false
|
|
17086
17076
|
},
|
|
17087
17077
|
"outputs": {
|
|
@@ -17877,7 +17867,7 @@
|
|
|
17877
17867
|
},
|
|
17878
17868
|
"unsafe": {
|
|
17879
17869
|
"type": "boolean",
|
|
17880
|
-
"description": "Whether or not the
|
|
17870
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
17881
17871
|
"default": false
|
|
17882
17872
|
},
|
|
17883
17873
|
"outputs": {
|
|
@@ -18034,7 +18024,7 @@
|
|
|
18034
18024
|
},
|
|
18035
18025
|
"unsafe": {
|
|
18036
18026
|
"type": "boolean",
|
|
18037
|
-
"description": "Whether or not the
|
|
18027
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
18038
18028
|
"default": false
|
|
18039
18029
|
},
|
|
18040
18030
|
"outputs": {
|
|
@@ -19032,7 +19022,7 @@
|
|
|
19032
19022
|
},
|
|
19033
19023
|
"unsafe": {
|
|
19034
19024
|
"type": "boolean",
|
|
19035
|
-
"description": "Whether or not the
|
|
19025
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
19036
19026
|
"default": false
|
|
19037
19027
|
},
|
|
19038
19028
|
"outputs": {
|
|
@@ -19334,7 +19324,7 @@
|
|
|
19334
19324
|
},
|
|
19335
19325
|
"unsafe": {
|
|
19336
19326
|
"type": "boolean",
|
|
19337
|
-
"description": "Whether or not the
|
|
19327
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
19338
19328
|
"default": false
|
|
19339
19329
|
},
|
|
19340
19330
|
"outputs": {
|
|
@@ -19622,7 +19612,7 @@
|
|
|
19622
19612
|
},
|
|
19623
19613
|
"unsafe": {
|
|
19624
19614
|
"type": "boolean",
|
|
19625
|
-
"description": "Whether or not the
|
|
19615
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
19626
19616
|
"default": false
|
|
19627
19617
|
},
|
|
19628
19618
|
"outputs": {
|
|
@@ -19838,7 +19828,7 @@
|
|
|
19838
19828
|
},
|
|
19839
19829
|
"unsafe": {
|
|
19840
19830
|
"type": "boolean",
|
|
19841
|
-
"description": "Whether or not the
|
|
19831
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
19842
19832
|
"default": false
|
|
19843
19833
|
},
|
|
19844
19834
|
"outputs": {
|
|
@@ -20281,7 +20271,7 @@
|
|
|
20281
20271
|
},
|
|
20282
20272
|
"unsafe": {
|
|
20283
20273
|
"type": "boolean",
|
|
20284
|
-
"description": "Whether or not the
|
|
20274
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
20285
20275
|
"default": false
|
|
20286
20276
|
},
|
|
20287
20277
|
"outputs": {
|
|
@@ -20448,7 +20438,7 @@
|
|
|
20448
20438
|
},
|
|
20449
20439
|
"unsafe": {
|
|
20450
20440
|
"type": "boolean",
|
|
20451
|
-
"description": "Whether or not the
|
|
20441
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
20452
20442
|
"default": false
|
|
20453
20443
|
},
|
|
20454
20444
|
"outputs": {
|
|
@@ -20528,7 +20518,7 @@
|
|
|
20528
20518
|
},
|
|
20529
20519
|
"unsafe": {
|
|
20530
20520
|
"type": "boolean",
|
|
20531
|
-
"description": "Whether or not the
|
|
20521
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
20532
20522
|
"default": false
|
|
20533
20523
|
},
|
|
20534
20524
|
"outputs": {
|
|
@@ -20603,7 +20593,7 @@
|
|
|
20603
20593
|
},
|
|
20604
20594
|
"unsafe": {
|
|
20605
20595
|
"type": "boolean",
|
|
20606
|
-
"description": "Whether or not the
|
|
20596
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
20607
20597
|
"default": false
|
|
20608
20598
|
},
|
|
20609
20599
|
"outputs": {
|
|
@@ -21276,7 +21266,6 @@
|
|
|
21276
21266
|
"description": "This test includes every property across all actions.",
|
|
21277
21267
|
"before": "setup.json",
|
|
21278
21268
|
"after": "cleanup.json",
|
|
21279
|
-
"unsafe": true,
|
|
21280
21269
|
"runOn": [
|
|
21281
21270
|
{
|
|
21282
21271
|
"platforms": [
|