From b3bab1a4947e0ddd7ecd802faa275e5597370cd8 Mon Sep 17 00:00:00 2001 From: Roman Jordan Date: Sat, 11 Dec 2021 09:49:59 -0800 Subject: [PATCH] Update azure-pipelines.yml `npm install` will not validate the package HASH from the `package-lock.json`. Given the open source nature, it is probably better to know what exactly the black box is doing. :) --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 56d08ddc..fdd6e32c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -18,7 +18,7 @@ steps: displayName: "Installing Node.js" - script: | - npm install + npm ci # Use Package lock to install CI stuff, faster, more sercure npm run build displayName: "Running npm install and build"