diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ad3e0ac..0772a41 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,10 +12,12 @@ pool: steps: - task: NodeTool@0 inputs: - versionSpec: '10.x' + versionSpec: '17.x' displayName: 'Install Node.js' - script: | npm install + npx tsc + npm run compile npm run build displayName: 'npm install and build'