From 1794532cb13a609331238c7a0431438f6a3b3de7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Breitbart?= Date: Sun, 9 Jun 2019 22:08:41 +0200 Subject: [PATCH] test pipeline --- azure-pipelines.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e8b23d34..cb04f785 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -83,6 +83,25 @@ jobs: yarn test-api --headless displayName: 'Integration tests' +- job: BenchmarkTests + pool: + vmImage: 'ubuntu-16.04' + steps: + - task: NodeTool@0 + inputs: + versionSpec: '8.x' + displayName: 'Install Node.js' + - task: geeklearningio.gl-vsts-tasks-yarn.yarn-installer-task.YarnInstaller@2 + inputs: + versionSpec: "1.9.4" + displayName: 'Install Yarn' + - script: | + yarn + displayName: 'Install dependencies and build' + - script: | + yarn benchmark-baseline + displayName: 'Benchmark tests' + - job: Release dependsOn: - Linux