From be82716b85537daff38478661511718d3983b3b3 Mon Sep 17 00:00:00 2001 From: lucasBanksRedmane Date: Thu, 22 Jun 2023 13:07:06 -0500 Subject: [PATCH 1/2] test --- text.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 text.txt diff --git a/text.txt b/text.txt new file mode 100644 index 00000000..d800886d --- /dev/null +++ b/text.txt @@ -0,0 +1 @@ +123 \ No newline at end of file From 083927a02e486a7e52580f61006a6aff2e73a320 Mon Sep 17 00:00:00 2001 From: Lucas Banks <137333494+lucasBanksRedmane@users.noreply.github.com> Date: Mon, 26 Jun 2023 11:46:59 -0500 Subject: [PATCH 2/2] Set up CI with Azure Pipelines flatris github [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..a7f2a029 --- /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'