From fd4a5a422f050907d5e068883e9c08d49160ca42 Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com> Date: Tue, 16 Apr 2019 14:36:13 -0700 Subject: [PATCH] Make build fail by running npm run test last (#34788) * Make build fail by running npm run test last * Missing semicolon should fail CI * Put semicolon back again --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3356ae6704..1d4152525f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -14,8 +14,8 @@ jobs: verbose: false - script: | - git checkout -- . && npm run test if [[ $BUILD_REASON == "Schedule" ]]; then git config --global user.email "types@microsoft.com" && git config --global user.name "TypeScript Bot" && npm run update-codeowners; fi + git checkout -- . && npm run test displayName: 'npm run test'