From a85b5ef92f13df0a6f45e08bb8067451a59b7cfe Mon Sep 17 00:00:00 2001 From: Lauri Nevala Date: Mon, 16 Nov 2020 15:21:15 +0200 Subject: [PATCH] Do not use cache Signed-off-by: Lauri Nevala --- .azure-pipelines.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index d941546fbd..76662463ce 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -114,13 +114,13 @@ jobs: inputs: versionSpec: $(node_version) displayName: Install Node.js - - task: Cache@2 - inputs: - key: yarn | $(Agent.OS) | yarn.lock - restoreKeys: | - yarn | "$(Agent.OS)" - path: $(YARN_CACHE_FOLDER) - displayName: Cache Yarn packages + #- task: Cache@2 + # inputs: + # key: yarn | $(Agent.OS) | yarn.lock + # restoreKeys: | + # yarn | "$(Agent.OS)" + # path: $(YARN_CACHE_FOLDER) + # displayName: Cache Yarn packages - script: make install-deps displayName: Install dependencies - script: make lint