From 031abaa4f2c82a54e8ee255ca70fa9cfaaf1face Mon Sep 17 00:00:00 2001 From: Chris Vickery Date: Mon, 23 Sep 2019 16:35:09 -0700 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..1d3b851 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,18 @@ + +trigger: +- master + +pool: + vmImage: 'ubuntu-latest' + +steps: +- task: NodeTool@0 + inputs: + versionSpec: '10.x' + displayName: 'Install Node.js' + +- script: | + npm install yarn + yarn + yarn run test-ci + displayName: 'yarn test'