We run an Azure DevOps (Server 2020 Update 1) instance in my company and use it to run the pipelines. When the tasks are running, there is no output until the task is done.
For example we run
- task: Npm@1
displayName: 'Run ng e2e tests'
condition: eq('${{parameters.e2e}}', 'true')
inputs:
command: custom
verbose: false
customCommand: 'run e2e:ci'
which currently runs into issues, but I have to wait the whole task (around 10 minutes) to get any information. To my knowledge "verbose" is just for "--verbose" not the standard output.
Is there any way to enable the log output while running?