I am trying to write my first GitLab pipeline description. I use the needs parameter, and I still don't know why I get this mashed connection setup. Does anyone know what I am doing wrong? Here is what I want to achieve`.
But instead this is what I get:
foo:
stage: build
bar:
stage: build
foo-test:
stage: test
needs: ["foo"]
bar-test:
stage: test
needs: ["bar"]

