We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 809e521 commit 067e5b1Copy full SHA for 067e5b1
.github/workflows/tests.yml
@@ -175,11 +175,14 @@ jobs:
175
node-version-file: '.nvmrc'
176
cache: 'yarn'
177
178
- - name: Install Firefox (Non-Snap)
+ - name: Install Firefox (PPA)
179
run: |
180
- sudo snap remove firefox || true
+ 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
184
sudo apt update
- sudo apt install -y firefox-esr
185
+ sudo apt install -y firefox
186
187
- name: Verify Browsers in Cypress
188
run: yarn cypress info
0 commit comments