From 3d748aab0768886dc03d46c95835dbf162f750b7 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Tue, 5 Nov 2019 11:30:11 -0800 Subject: [PATCH] Skip puppeteer download on unit test runs Fixes #2539 --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 177f581f4b..610db0741b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -16,7 +16,7 @@ jobs: inputs: versionSpec: '1.x' displayName: 'Install Yarn' - - script: yarn + - script: PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 yarn displayName: 'Install dependencies and build' - script: yarn test-unit --forbid-only displayName: 'Unit tests' @@ -47,7 +47,7 @@ jobs: inputs: versionSpec: '8.x' displayName: 'Install Node.js' - - script: yarn + - script: PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 yarn displayName: 'Install dependencies and build' - script: yarn test-unit --forbid-only displayName: 'Unit tests' @@ -62,7 +62,7 @@ jobs: inputs: versionSpec: '8.x' displayName: 'Install Node.js' - - script: yarn + - script: PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 yarn displayName: 'Install dependencies and build' - script: yarn test-unit --forbid-only displayName: 'Unit tests'