From 13ce4aa139dd95557c405eebb828a9baffd9bc92 Mon Sep 17 00:00:00 2001 From: cccs-ml <127332022+cccs-ml@users.noreply.github.com> Date: Thu, 28 Sep 2023 17:52:57 +0000 Subject: [PATCH] fix pipeline yaml and install frontend --- pipelines/full-build.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pipelines/full-build.yaml b/pipelines/full-build.yaml index 2d5c64b..8b9f7db 100644 --- a/pipelines/full-build.yaml +++ b/pipelines/full-build.yaml @@ -122,8 +122,6 @@ stages: dependsOn: build_python timeoutInMinutes: 10 displayName: Test Frontend Code - env: - CI: "true" steps: - checkout: none - download: current @@ -134,7 +132,8 @@ stages: versionSpec: 18.x - script: | set -xv # Echo commands before they are run - npm test + yarn install + CI=true npm test workingDirectory: $(Pipeline.Workspace)/working/assemblyline-ui-frontend/ displayName: Test Frontend