21 lines
505 B
YAML
21 lines
505 B
YAML
|
|
include-source: false # Drop file/line/col from output
|
||
|
|
---
|
||
|
|
on: push
|
||
|
|
jobs:
|
||
|
|
build:
|
||
|
|
runs-on: ubuntu-latest
|
||
|
|
steps:
|
||
|
|
# Purposeful typo in run
|
||
|
|
- runn: echo hi
|
||
|
|
---
|
||
|
|
{
|
||
|
|
"errors": [
|
||
|
|
{
|
||
|
|
"Message": ".github/workflows/error.yml (Line: 7, Col: 9): Unexpected value 'runn'"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"Message": ".github/workflows/error.yml (Line: 7, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|