From 879e2eb2f47392fa348cc7ca73e838f5817fe649 Mon Sep 17 00:00:00 2001 From: Bharat Middha <5100938+bmiddha@users.noreply.github.com> Date: Wed, 19 Aug 2026 14:44:42 -0700 Subject: [PATCH] Add npm config list step to install-node.yaml --- common/config/azure-pipelines/templates/install-node.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/config/azure-pipelines/templates/install-node.yaml b/common/config/azure-pipelines/templates/install-node.yaml index a2ff74d718..996766ccc5 100644 --- a/common/config/azure-pipelines/templates/install-node.yaml +++ b/common/config/azure-pipelines/templates/install-node.yaml @@ -14,3 +14,6 @@ steps: registry=https://packagefeedproxy.microsoft.io/npm/ EOF displayName: 'Set user npm registry to packagefeedproxy' + + - bash: npm config list + displayName: 'Show npm configuration'