From 2e761f8296c45f958a232c0b08b962352b74a8f7 Mon Sep 17 00:00:00 2001 From: David Anson Date: Sat, 1 Jun 2019 14:40:14 -0700 Subject: [PATCH] Convert Azure DevOps script to one-liner to work around early exit on Windows due to invoking a script from a script (npm). --- azure-pipelines.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2a009590..173fe5a2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -41,7 +41,5 @@ steps: displayName: 'Install Node.js' -- script: | - npm install --no-package-lock - npm run ci +- script: 'npm install --no-package-lock && npm run ci' displayName: 'npm install and run ci'