From 2e52d2991f7648e02e4ecb5ebd3bf815979df04a Mon Sep 17 00:00:00 2001 From: Deepak Selvakumar Date: Mon, 3 Nov 2025 10:03:32 +0530 Subject: [PATCH] chore(ci): Add support for 1PL Signed-off-by: Deepak Selvakumar --- .pipeline-config.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .pipeline-config.yaml diff --git a/.pipeline-config.yaml b/.pipeline-config.yaml new file mode 100644 index 0000000..da74b7b --- /dev/null +++ b/.pipeline-config.yaml @@ -0,0 +1,17 @@ +version: '2' + +tasks: + simple-execute: + displayName: NodeJS SDK PR Checks + steps: + - name: execute + image: icr.io/continuous-delivery/pipeline/pipeline-base-image:2.81 + script: | + #!/usr/bin/env bash + + echo "NodeJS SDK PR Checks Begin" + #!/usr/bin/env bash + set -e + make install + make test-unit + \ No newline at end of file