From 6aa538b101994c0c3a6d3b70e5ecb05498461561 Mon Sep 17 00:00:00 2001 From: Cecile Muller Date: Mon, 8 Jul 2019 23:46:55 +0200 Subject: [PATCH] Added Azure Pipelines config --- .gitignore | 1 + azure-pipelines.yml | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/.gitignore b/.gitignore index c875d44..3a62488 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,7 @@ !/.npmrc !/.travis.yml !/.vscode +!/azure-pipelines.yml !/src !/test !/jasmine.typescript.js diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..d5c1da9 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,22 @@ +strategy: + maxParallel: 2 + matrix: + lts: + node_version: 10.x + latest: + node_version: 12.x + +pool: + vmImage: 'ubuntu-16.04' + +steps: + - task: NodeTool@0 + displayName: Use Node + inputs: + versionSpec: $(node_version) + + - script: npm install + displayName: Install Dependencies + + - script: npm test + displayName: Run Tests