# INTENTIONALLY INVALID. The flow sequence assigned to `stages` is opened with [ and never
# closed, so the parser consumes the remainder of the file looking for the closing bracket and
# fails at end of stream. A recovering parser should report the position of the OPENING bracket,
# not just the end of the file, which is what makes this useful as an error-message fixture.
name: broken-pipeline
image: registry.example.invalid/ci/runner:1.4

stages: [build, test, deploy

jobs:
  build:
    script: make build
  test:
    script: make test
