We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 910a4d6 commit 337de0bCopy full SHA for 337de0b
.github/workflows/test.yml
@@ -27,14 +27,14 @@ jobs:
27
with:
28
firefox-version: latest-nightly
29
30
- - name: Verify Firefox Nightly installation
31
- run: firefox --version
32
-
33
- name: Install dependencies
34
run: npm ci
35
36
- name: Run tests
37
- run: FIREFOX_BINARY=/opt/hostedtoolcache/firefox/latest-nightly/x64/firefox npm test
+ run: |
+ set FIREFOX_BINARY="/opt/hostedtoolcache/firefox/latest-nightly/x64/firefox"
+ /opt/hostedtoolcache/firefox/latest-nightly/x64/firefox --version
+ npm test
38
39
- name: Upload screenshots on failure
40
if: failure()
0 commit comments