File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -27,14 +27,13 @@ jobs:
2727 with :
2828 firefox-version : latest-nightly
2929
30- - name : Verify Firefox Nightly installation
31- run : firefox --version
32-
3330 - name : Install dependencies
3431 run : npm ci
3532
3633 - name : Run tests
37- run : FIREFOX_BINARY=/opt/hostedtoolcache/firefox/latest-nightly/x64/firefox npm test
34+ run : npm test
35+ env :
36+ FIREFOX_BINARY : /opt/hostedtoolcache/firefox/latest-nightly/x64/firefox
3837
3938 - name : Upload screenshots on failure
4039 if : failure()
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ class FirefoxExtensionHelper {
9797
9898 // Use Firefox Nightly by default (required for WebExtension Experiments)
9999 // Can be overridden with FIREFOX_BINARY environment variable
100- const firefoxBinary = process . env . FIREFOX_BINARY || await this . detectFirefoxNightly ( ) ;
100+ const firefoxBinary = process . env . FIREFOX_BINARY ; // || await this.detectFirefoxNightly();
101101
102102 if ( firefoxBinary ) {
103103 console . log ( `Using Firefox binary: ${ firefoxBinary } ` ) ;
You can’t perform that action at this time.
0 commit comments