From 263635e4d1af718d3905c3b77147c56654e78a9d Mon Sep 17 00:00:00 2001 From: Philip Stockerer Date: Tue, 19 Apr 2022 12:44:34 +0000 Subject: [PATCH] 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'