mirror of https://github.com/zulip/zulip.git
lint: Reformat YAML files with Prettier.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
40f76bb030
commit
2794bc1ef4
|
@ -227,7 +227,6 @@ jobs:
|
||||||
path: ./var/xunit-test-results/casper/
|
path: ./var/xunit-test-results/casper/
|
||||||
- *notify_failure_status
|
- *notify_failure_status
|
||||||
|
|
||||||
|
|
||||||
"focal-backend":
|
"focal-backend":
|
||||||
docker:
|
docker:
|
||||||
# This is built from tools/ci/images/focal/Dockerfile.
|
# This is built from tools/ci/images/focal/Dockerfile.
|
||||||
|
|
|
@ -22,9 +22,9 @@ jobs:
|
||||||
# Initializes the CodeQL tools for scanning.
|
# Initializes the CodeQL tools for scanning.
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
uses: github/codeql-action/init@v1
|
uses: github/codeql-action/init@v1
|
||||||
|
|
||||||
# Override language selection by uncommenting this and choosing your languages
|
# Override language selection by uncommenting this and choosing your languages
|
||||||
# with:
|
# with:
|
||||||
# languages: go, javascript, csharp, python, cpp, java
|
# languages: go, javascript, csharp, python, cpp, java
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
- name: Perform CodeQL Analysis
|
||||||
uses: github/codeql-action/analyze@v1
|
uses: github/codeql-action/analyze@v1
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
test1:
|
test1:
|
||||||
responses:
|
responses:
|
||||||
'200':
|
"200":
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
|
@ -31,23 +31,15 @@ test1:
|
||||||
type: string
|
type: string
|
||||||
example:
|
example:
|
||||||
{
|
{
|
||||||
"top_array": [
|
"top_array":
|
||||||
{
|
|
||||||
"obj": {
|
|
||||||
"str3": "test"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
[
|
[
|
||||||
{
|
{ "obj": { "str3": "test" } },
|
||||||
"str1": "success",
|
[{ "str1": "success", "str2": "success" }],
|
||||||
"str2": "success"
|
],
|
||||||
}
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
test2:
|
test2:
|
||||||
responses:
|
responses:
|
||||||
'200':
|
"200":
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
|
@ -79,24 +71,15 @@ test2:
|
||||||
type: string
|
type: string
|
||||||
example:
|
example:
|
||||||
{
|
{
|
||||||
"top_array": [
|
"top_array":
|
||||||
{
|
|
||||||
"obj": {
|
|
||||||
"str3": "test",
|
|
||||||
"str4": "extraneous"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
[
|
[
|
||||||
{
|
{ "obj": { "str3": "test", "str4": "extraneous" } },
|
||||||
"str1": "success",
|
[{ "str1": "success", "str2": "success" }],
|
||||||
"str2": "success"
|
],
|
||||||
}
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
test3:
|
test3:
|
||||||
responses:
|
responses:
|
||||||
'200':
|
"200":
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
|
@ -124,17 +107,9 @@ test3:
|
||||||
type: string
|
type: string
|
||||||
example:
|
example:
|
||||||
{
|
{
|
||||||
"top_array": [
|
"top_array":
|
||||||
{
|
|
||||||
"obj": {
|
|
||||||
"str3": "test"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
[
|
[
|
||||||
{
|
{ "obj": { "str3": "test" } },
|
||||||
"str1": "success",
|
[{ "str1": "success", "str2": "success" }],
|
||||||
"str2": "success"
|
],
|
||||||
}
|
|
||||||
]
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue