From 015fd7c397484cdec56161ad02bb08f4c2734a0f Mon Sep 17 00:00:00 2001 From: Thomas Norling Date: Mon, 24 Jul 2023 13:43:51 -0700 Subject: [PATCH] Update Nightly Pipeline to fix CodeQL (#6260) Updates nightly pipeline to run the build/test commands in the relevant workspaces --- .pipelines/nightly-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pipelines/nightly-build.yml b/.pipelines/nightly-build.yml index 8b08e4396e..38ec506796 100644 --- a/.pipelines/nightly-build.yml +++ b/.pipelines/nightly-build.yml @@ -33,13 +33,13 @@ jobs: displayName: "Build Libraries" inputs: command: "custom" - customCommand: "run build" + customCommand: "run build --workspace=lib/** --workspace=extensions/**" - task: Npm@1 displayName: "Run tests" continueOnError: true inputs: command: "custom" - customCommand: "run test" + customCommand: "run test --workspace=lib/** --workspace=extensions/**" - task: CodeQL3000Finalize@0