From 6ebbe16070206ca02c8f958738ed25b4d4607f2c Mon Sep 17 00:00:00 2001 From: Joseph Flinn <58369717+joseph-flinn@users.noreply.github.com> Date: Fri, 11 Dec 2020 15:42:43 -0800 Subject: [PATCH] Set up CI with Azure Pipelines testing ci with azure pipelines [skip ci] --- azure-pipelines.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000000..77558369d3 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,24 @@ +# Node.js +# Build a general Node.js project with npm. +# Add steps that analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript + +trigger: +- main + +pool: + vmImage: 'windows-latest' + +steps: +- task: NodeTool@0 + inputs: + versionSpec: '10.x' + displayName: 'Install Node.js' + +- script: npm install + displayName: 'npm install' + +- script: | + npm run build + npm npm run clean:dist + electron-builder --win --x64 --ia32 -p never