Files
languageservices/actions-workflow-parser/testdata/reader/yaml-schema-string.yml
T
2023-01-06 15:54:31 -08:00

57 lines
1.1 KiB
YAML

include-source: false # Drop file/line/col from output
skip:
- TypeScript
---
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: github/checkout@v2.5
with:
dot: .
single-quoted-number: '8'
double-quoted-number: "9"
---
{
"jobs": [
{
"type": "job",
"id": "build",
"name": "build",
"if": {
"type": 3,
"expr": "success()"
},
"runs-on": "ubuntu-latest",
"steps": [
{
"id": "__github_checkout",
"if": {
"type": 3,
"expr": "success()"
},
"uses": "github/checkout@v2.5",
"with": {
"type": 2,
"map": [
{
"Key": "dot",
"Value": "."
},
{
"Key": "single-quoted-number",
"Value": "8"
},
{
"Key": "double-quoted-number",
"Value": "9"
}
]
}
}
]
}
]
}