20 lines
375 B
YAML
20 lines
375 B
YAML
include-source: false # Drop file/line/col from output
|
|
---
|
|
on: push
|
|
jobs:
|
|
build:
|
|
runs-on: linux
|
|
container:
|
|
image: node:14.16
|
|
credentials:
|
|
badkey: somevalue
|
|
steps:
|
|
- run: echo hi
|
|
---
|
|
{
|
|
"errors": [
|
|
{
|
|
"Message": ".github/workflows/job-container-invalid-credentials.yml (Line: 8, Col: 9): Unexpected value 'badkey'"
|
|
}
|
|
]
|
|
} |