From 3dd67fea73771338813318902b8c035b1b6a776b Mon Sep 17 00:00:00 2001 From: cccs-nr Date: Tue, 11 Jun 2024 16:18:30 +0000 Subject: [PATCH] Added the eslint script to the Test Frontend job on the full-build pipeline --- pipelines/full-build.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pipelines/full-build.yaml b/pipelines/full-build.yaml index adf8dca..51f357d 100644 --- a/pipelines/full-build.yaml +++ b/pipelines/full-build.yaml @@ -151,10 +151,17 @@ stages: - script: | set -xv # Echo commands before they are run yarn install - CI=true npm test + yarn run build-test workingDirectory: $(Pipeline.Workspace)/working/assemblyline-ui-frontend/ displayName: Test Frontend + - script: | + set -xv # Echo commands before they are run + yarn install + yarn run build-lint + + workingDirectory: $(Pipeline.Workspace)/working/assemblyline-ui-frontend/ + displayName: ESLint Frontend - job: build_frontend dependsOn: test_frontend