Intellisense does not recognise custom docker definition

Issue #595 open
Scott MacKay created an issue

When using a custom docker service, the intellisense incorrectly flags the use of caches: docker not having a docker service enabled on the step.

example

image:
  name: test

definitions:
  services:
    docker-custom:
      memory: 2048
      type: docker

pipelines:
  branches:
    main:
      - step:
          name: "Demo Step"
          services: [ docker-custom ]
          caches:
            - docker
          script:
            - echo "step" 

Line 17 shows an intellisense error when it is actually valid.

Comments (2)

  1. Log in to comment