From 78bf0ab459c62ae10a83a22e856df72dc37492c6 Mon Sep 17 00:00:00 2001 From: Joachim Date: Thu, 28 Oct 2021 13:24:28 -0400 Subject: [PATCH 1/3] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..a7f2a02 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,21 @@ +# Node.js with React +# Build a Node.js project that uses React. +# Add steps that analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript + +trigger: +- master + +pool: + vmImage: ubuntu-latest + +steps: +- task: NodeTool@0 + inputs: + versionSpec: '10.x' + displayName: 'Install Node.js' + +- script: | + npm install + npm run build + displayName: 'npm install and build' From 5eba66e69c4b599b37f152727507c40ca353213c Mon Sep 17 00:00:00 2001 From: Joachim Date: Thu, 28 Oct 2021 13:27:57 -0400 Subject: [PATCH 2/3] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a7f2a02..85939f0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,7 +12,7 @@ pool: steps: - task: NodeTool@0 inputs: - versionSpec: '10.x' + versionSpec: '15.x' displayName: 'Install Node.js' - script: | From c3073070a986b9de88fa45ea73419134c45c545e Mon Sep 17 00:00:00 2001 From: Joachim Date: Thu, 28 Oct 2021 13:38:41 -0400 Subject: [PATCH 3/3] Update azure-pipelines.yml for Azure Pipelines build all --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 85939f0..ee0231b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -17,5 +17,5 @@ steps: - script: | npm install - npm run build + npm run build:all displayName: 'npm install and build'