nrwl / nx-azure-build

Example of setting up distributed Azure build for Nx workspace
113 stars 38 forks source link

Job 'lint3' looks for the wrong text in its condition #13

Closed gmaughan closed 3 years ago

gmaughan commented 3 years ago

The condition for job 'lint3' in azure-pipeline.yml looks for the text 'lint2' when it probably should be looking for 'lint3'.

 - job: lint3
    dependsOn: initial_setup
    condition: |
      and(
        succeeded(),
        not(contains(
          dependencies.initial_setup.outputs['setCommands.COMMANDS'],
          '"lint2":[]'
        ))
      )
gmaughan commented 3 years ago

Oops. PR for this already exists.