From b75b6ecc455528d1f034bec21c69c93a61db2f90 Mon Sep 17 00:00:00 2001 From: FranzKohl <44869700+FranzKohl@users.noreply.github.com> Date: Wed, 2 Dec 2020 11:58:25 +0100 Subject: [PATCH] Updated azure-pipelines.yml Added 'npm test' to azure-pipelines.yml and updated the trigger to 'master' --- azure-pipelines.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2a6e47f5ef..6039400d6d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -4,7 +4,7 @@ # https://docs.microsoft.com/azure/devops/pipelines/languages/javascript trigger: -- main +- master pool: vmImage: 'ubuntu-latest' @@ -18,4 +18,5 @@ steps: - script: | npm install npm run build - displayName: 'npm install and build' + npm test + displayName: 'npm install, build and test'