From f5efd100f41d803a223897c22a1b23d784362017 Mon Sep 17 00:00:00 2001 From: Philip Stockerer Date: Tue, 19 Apr 2022 12:30:46 +0000 Subject: [PATCH 1/4] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ad3e0ac..cefb2a4 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,7 +7,7 @@ trigger: - main pool: - vmImage: windows-latest + vmImage: ubuntu-latest steps: - task: NodeTool@0 @@ -17,5 +17,6 @@ steps: - script: | npm install + tsc npm run build displayName: 'npm install and build' From 9e9416b0493b249413bc061f73f9c4d968798318 Mon Sep 17 00:00:00 2001 From: Philip Stockerer Date: Tue, 19 Apr 2022 12:32:48 +0000 Subject: [PATCH 2/4] 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 cefb2a4..21f5690 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,7 +7,7 @@ trigger: - main pool: - vmImage: ubuntu-latest + vmImage: windows-latest steps: - task: NodeTool@0 From 263635e4d1af718d3905c3b77147c56654e78a9d Mon Sep 17 00:00:00 2001 From: Philip Stockerer Date: Tue, 19 Apr 2022 12:44:34 +0000 Subject: [PATCH 3/4] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 21f5690..1929abc 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,16 +7,17 @@ trigger: - main pool: - vmImage: windows-latest + vmImage: ubuntu-latest steps: - task: NodeTool@0 inputs: - versionSpec: '10.x' + versionSpec: '17.x' displayName: 'Install Node.js' - script: | - npm install - tsc + npm install --only=dev + npx tsc + npm run compile npm run build displayName: 'npm install and build' From ab67cf4c04410455e5832ef53e16b655fc94c0d7 Mon Sep 17 00:00:00 2001 From: Philip Stockerer Date: Tue, 19 Apr 2022 12:46:06 +0000 Subject: [PATCH 4/4] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1929abc..0772a41 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,7 +7,7 @@ trigger: - main pool: - vmImage: ubuntu-latest + vmImage: windows-latest steps: - task: NodeTool@0 @@ -16,7 +16,7 @@ steps: displayName: 'Install Node.js' - script: | - npm install --only=dev + npm install npx tsc npm run compile npm run build