From 0a3fb647344372bc7b134dd5772ee428eef3984b Mon Sep 17 00:00:00 2001 From: MrTimscampi Date: Fri, 28 Feb 2020 15:15:22 +0100 Subject: [PATCH] Add build step to CI --- .ci/azure-pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/azure-pipelines.yml b/.ci/azure-pipelines.yml index 1b16b94b62..43c05fffa2 100644 --- a/.ci/azure-pipelines.yml +++ b/.ci/azure-pipelines.yml @@ -27,6 +27,9 @@ jobs: - script: 'yarn install' displayName: 'Install Dependencies' + - script: 'yarn build' + displayName: 'Build' + - script: 'test -d dist' displayName: 'Check Build'