From 3c4d75825b80b9051fee37da988c0d5e0e76ea60 Mon Sep 17 00:00:00 2001 From: Peter Hedenskog Date: Sun, 31 Dec 2023 09:35:30 +0100 Subject: [PATCH] do not use the force Luke (#4046) Skip installing edge since its always failing. --- .github/workflows/windows.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 83c6b70ab..d1f299f3c 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -21,8 +21,11 @@ jobs: CHROMEDRIVER_SKIP_DOWNLOAD: true GECKODRIVER_SKIP_DOWNLOAD: true - run: choco outdated - - name: Install dependencies - run: choco install microsoft-edge --force + - name: Show versions + run: powershell "Get-AppxPackage -Name *MicrosoftEdge.* | Foreach Version" + shell: cmd + #- name: Install dependencies + # run: choco install microsoft-edge - name: Run Edge test run: node bin/sitespeed.js -b edge https://www.sitespeed.io/ shell: cmd