From 0b6ecf1fe467e8606033ec3a62300b4ccfdf75f9 Mon Sep 17 00:00:00 2001 From: Tim Neutkens Date: Mon, 1 Oct 2018 13:31:00 +0200 Subject: [PATCH] Set up CI with Azure Pipelines --- azure-pipelines.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000000..23baa8350b --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,28 @@ +pool: + vmImage: 'vs2017-win2016' + +strategy: + maxParallel: 10 + matrix: + node-10: + node_version: ^10.10.0 + node-8: + node_version: ^8.12.0 + +steps: +- task: NodeTool@0 + inputs: + versionSpec: $(node_version) + displayName: 'Install Node.js' + +- script: | + npm install + displayName: 'Install dependencies' + +- script: | + npm run bootstrap + displayName: 'Lerna bootstrap' + +- script: | + npm test + displayName: 'Run tests' \ No newline at end of file -- GitLab