From 75bbd3b1eb941598d92dcfad980a8d7d9440e943 Mon Sep 17 00:00:00 2001 From: craigmray4 Date: Mon, 18 Nov 2024 11:21:44 -0600 Subject: [PATCH 1/3] Flatris 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 00000000..ba0bcf31 --- /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: '20.x' + displayName: 'Install Node.js' + +- script: | + npm install + npm run build + displayName: 'npm install and build' From 235b891230031c006d30d1b9b6a801d3bdeae403 Mon Sep 17 00:00:00 2001 From: craigmray4 Date: Tue, 19 Nov 2024 09:04:59 -0600 Subject: [PATCH 2/3] Changed node.js version to 16 from 20 --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ba0bcf31..44cf5a5e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,7 +12,7 @@ pool: steps: - task: NodeTool@0 inputs: - versionSpec: '20.x' + versionSpec: '16.x' displayName: 'Install Node.js' - script: | From c3305957f808cb2d0109e28f801af7f989d089d6 Mon Sep 17 00:00:00 2001 From: craigmray4 Date: Tue, 19 Nov 2024 09:08:37 -0600 Subject: [PATCH 3/3] Change version to 10 --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 44cf5a5e..a7f2a029 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,7 +12,7 @@ pool: steps: - task: NodeTool@0 inputs: - versionSpec: '16.x' + versionSpec: '10.x' displayName: 'Install Node.js' - script: |