From 1f2fd5ba4d4bfbe412dd334569358d5cfbc828ba Mon Sep 17 00:00:00 2001 From: Aleksey Novikov Date: Fri, 1 Nov 2024 12:52:26 +0300 Subject: [PATCH] fix azure-pipelines.yml for NodeJS16 --- azure-pipelines.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7d56432..e80d9ac 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -17,9 +17,13 @@ jobs: steps: - task: NodeTool@0 inputs: - versionSpec: '14.x' + versionSpec: '16.x' displayName: 'Install Node.js' + - script: | + npx puppeteer browsers install chrome + displayName: "install puppeteer" + - bash: | npm install displayName: 'npm install'