From 746557fe43e90f4f99492fde6bc330bf460c09f1 Mon Sep 17 00:00:00 2001 From: Dan Schulte Date: Fri, 28 Dec 2018 16:10:25 -0800 Subject: [PATCH] Add check:everything to pipeline --- azure-pipelines.yml | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6d8649aeb04d..37450d107de6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -51,7 +51,7 @@ jobs: codeCoverageTool: Cobertura summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/*coverage.xml' reportDirectory: '$(System.DefaultWorkingDirectory)/**/coverage' -- job: Check_Tests_For_Only +- job: Check_Everything pool: vmImage: 'Ubuntu 16.04' steps: @@ -62,24 +62,8 @@ jobs: verbose: false customCommand: install - task: Npm@1 - displayName: 'npm run check:testsforonly -- --azure-devops' + displayName: 'npm run check:everything -- --azure-devops' inputs: command: custom verbose: false - customCommand: run check:testsforonly -- --azure-devops -- job: Check_PackageJson_Version_Number - pool: - vmImage: 'Ubuntu 16.04' - steps: - - task: Npm@1 - displayName: 'npm install' - inputs: - command: custom - verbose: false - customCommand: install - - task: Npm@1 - displayName: 'npm run check:packagejsonversion -- --azure-devops' - inputs: - command: custom - verbose: false - customCommand: run check:packagejsonversion -- --azure-devops \ No newline at end of file + customCommand: run check:everything -- --azure-devops \ No newline at end of file