From 2c207ec9c33618e784ea515370c9dc8404458d5c Mon Sep 17 00:00:00 2001 From: DragonLord-ops Date: Wed, 7 Jan 2026 17:00:53 +0100 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 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 18adc48b8401c2731a65396090ccc125bbfd1316 Mon Sep 17 00:00:00 2001 From: "vincent.tjon-sien-kie" Date: Wed, 7 Jan 2026 17:29:38 +0100 Subject: [PATCH 2/3] remove "html-webpack-plugin": "^3.2.0", --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index b8008248..0da134d5 100644 --- a/package.json +++ b/package.json @@ -64,7 +64,6 @@ "eslint-plugin-react": "^7.14.3", "flow-bin": "^0.89.0", "flow-typed": "^2.6.0", - "html-webpack-plugin": "^3.2.0", "identity-obj-proxy": "^3.0.0", "jest": "24.8.0", "nodemon": "^1.19.1", From 37b2ba743586ebd339d5ace785a49b9a5ea20327 Mon Sep 17 00:00:00 2001 From: "vincent.tjon-sien-kie" Date: Wed, 7 Jan 2026 17:46:43 +0100 Subject: [PATCH 3/3] revert --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 0da134d5..b8008248 100644 --- a/package.json +++ b/package.json @@ -64,6 +64,7 @@ "eslint-plugin-react": "^7.14.3", "flow-bin": "^0.89.0", "flow-typed": "^2.6.0", + "html-webpack-plugin": "^3.2.0", "identity-obj-proxy": "^3.0.0", "jest": "24.8.0", "nodemon": "^1.19.1",