From 1473e2bbc455c9c7edf5baaf83bfcf7264aa6aa2 Mon Sep 17 00:00:00 2001 From: Oliver Blanthorn Date: Thu, 28 Jan 2021 13:36:12 +0100 Subject: [PATCH 1/2] Fix #2709: maybe --- .github/workflows/e2e.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index c0af7e1c..29930a47 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -16,8 +16,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu, windows] - # os: [ubuntu, macos, windows] + os: [ubuntu, macos, windows] browser: [firefox, firefoxesr] exclude: - os: macos From aaadfd76a464cfd3145d07fe6d99658492d2891f Mon Sep 17 00:00:00 2001 From: glacambre Date: Thu, 28 Jan 2021 18:26:29 +0100 Subject: [PATCH 2/2] Use brew install instead of brew cask --- .github/workflows/e2e.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 29930a47..c816b8c9 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -58,7 +58,7 @@ jobs: - name: Install Firefox Dev Edition (MacOS) if: matrix.browser == 'firefox' && matrix.os == 'macos' run: | - brew cask --verbose --debug install homebrew/cask-versions/firefox-developer-edition + brew install --cask homebrew/cask-versions/firefox-developer-edition echo "/Applications/Firefox Developer Edition.app/Contents/MacOS/" >> $GITHUB_PATH - name: Install Firefox Dev Edition (Windows) if: matrix.browser == 'firefox' && matrix.os == 'windows'