Skip to content

Commit 067e5b1

Browse files
committed
fix
1 parent 809e521 commit 067e5b1

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Diff for: .github/workflows/tests.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -175,11 +175,14 @@ jobs:
175175
node-version-file: '.nvmrc'
176176
cache: 'yarn'
177177

178-
- name: Install Firefox (Non-Snap)
178+
- name: Install Firefox (PPA)
179179
run: |
180-
sudo snap remove firefox || true
180+
sudo add-apt-repository -y ppa:mozillateam/ppa
181+
echo 'Package: firefox*' | sudo tee /etc/apt/preferences.d/mozilla-firefox
182+
echo 'Pin: release o=LP-PPA-mozillateam' | sudo tee -a /etc/apt/preferences.d/mozilla-firefox
183+
echo 'Pin-Priority: 501' | sudo tee -a /etc/apt/preferences.d/mozilla-firefox
181184
sudo apt update
182-
sudo apt install -y firefox-esr
185+
sudo apt install -y firefox
183186
184187
- name: Verify Browsers in Cypress
185188
run: yarn cypress info

0 commit comments

Comments
 (0)