Files
languageservices/actions-workflow-parser/testdata/reader/errors-reusable-workflow-max-result-size.yml
T
2023-01-06 15:54:31 -08:00

31 lines
685 B
YAML

include-source: false # Drop file/line/col from output
max-result-size: 2048
skip:
- TypeScript
- Go
---
on: push
jobs:
build-0: { uses: contoso/templates/.github/workflows/deploy.yml@v1 }
build-1: { uses: contoso/templates/.github/workflows/deploy.yml@v1 }
---
contoso/templates/.github/workflows/deploy.yml@v1
---
on: workflow_call
jobs:
job1:
runs-on: ubuntu-latest
steps:
- run: echo Deploying...
---
{
"errors": [
{
"Message": "contoso/templates/.github/workflows/deploy.yml@v1: Maximum object size exceeded"
},
{
"Message": "Unexpected type '' encountered while reading 'root'. The type 'MappingToken' was expected."
}
]
}