From 1fe04990a9cb1a1008d732a5ff59e569afdb9049 Mon Sep 17 00:00:00 2001 From: David Anson Date: Fri, 31 May 2019 21:59:51 -0700 Subject: [PATCH] Add linting, attempt to suppress package.lock message on Windows. --- azure-pipelines.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index bb093807..56617f15 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -41,6 +41,7 @@ steps: displayName: 'Install Node.js' - script: | - npm install + npm install --no-package-lock npm test + npm run lint displayName: 'npm install and test'