We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b060021 commit c1d32e2Copy full SHA for c1d32e2
1 file changed
.github/workflows/cross-browser.yml
@@ -49,6 +49,16 @@ jobs:
49
with:
50
node: ${{ env.NODE_VERSION }}
51
52
+ - name: Install Firefox (non-snap)
53
+ if: matrix.browser == 'firefox'
54
+ run: |
55
+ sudo snap remove --purge firefox
56
+ sudo add-apt-repository ppa:mozillateam/ppa -y
57
+ printf 'Package: *\nPin: release o=LP-PPA-mozillateam\nPin-Priority: 1001\n' \
58
+ | sudo tee /etc/apt/preferences.d/mozilla-firefox
59
+ sudo apt-get update -y
60
+ sudo apt-get install -y firefox
61
+
62
- name: Run cross-browser tests
63
uses: cypress-io/github-action@v6
64
0 commit comments