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'