From ba2c6f65adef7daccaecb93a6c786fbadea3baba Mon Sep 17 00:00:00 2001 From: Allen Shiels Date: Fri, 28 Feb 2020 14:09:32 +1100 Subject: [PATCH 1/2] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000000..aa912913ded --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,19 @@ +# Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- master + +pool: + vmImage: 'ubuntu-latest' + +steps: +- script: echo Hello, world! + displayName: 'Run a one-line script' + +- script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script' From ec40993448909a82a9fe8ac6e9325803e7f1b53e Mon Sep 17 00:00:00 2001 From: Allen Shiels Date: Fri, 28 Feb 2020 14:19:35 +1100 Subject: [PATCH 2/2] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index aa912913ded..b19897c16dc 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -10,10 +10,6 @@ pool: vmImage: 'ubuntu-latest' steps: -- script: echo Hello, world! - displayName: 'Run a one-line script' - -- script: | - echo Add other tasks to build, test, and deploy your project. - echo See https://aka.ms/yaml - displayName: 'Run a multi-line script' +- script: yarn install +- script: yarn run build-prod-min +- script: yarn run build-css \ No newline at end of file