File tree Expand file tree Collapse file tree 3 files changed +2
-8
lines changed
Expand file tree Collapse file tree 3 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 99 merge_build_on_linux :
1010 runs-on : ubuntu-22.04
1111 if : github.event.pull_request.merged == true
12- env :
13- SNAPCRAFT_BUILD_ENVIRONMENT : destructive
1412 steps :
1513 - uses : actions/checkout@v2
1614 - uses : actions/setup-node@master
2018 run : sudo apt update
2119 - name : install rpm and libarchive
2220 run : sudo apt install rpm libarchive-tools
23- - name : Install snapcraft
24- run : sudo snap install snapcraft --classic
2521 - name : install dependencies
2622 run : npm install
2723 - name : run unit tests
Original file line number Diff line number Diff line change 99jobs :
1010 nightly_build_on_linux :
1111 runs-on : ubuntu-22.04
12- env :
13- SNAPCRAFT_BUILD_ENVIRONMENT : destructive
1412 steps :
1513 - uses : actions/checkout@v2
1614 - uses : actions/setup-node@master
2018 run : sudo apt update
2119 - name : install rpm and libarchive
2220 run : sudo apt install rpm libarchive-tools
23- - name : Install snapcraft
24- run : sudo snap install snapcraft --classic
2521 - name : install dependencies
2622 run : npm install
2723 - name : run unit tests
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ import { SettingsStore } from './main/common/settings/settings-store';
2626app . commandLine . appendSwitch ( 'disable-color-correct-rendering' ) ; // Prevents incorrect color rendering
2727app . commandLine . appendSwitch ( 'autoplay-policy' , 'no-user-gesture-required' ) ; // Prevents requiring user interaction to play audio
2828app . commandLine . appendSwitch ( 'disable-http-cache' ) ; // Disables clearing of the cache folder at each startup
29+ app . commandLine . appendSwitch ( 'enable-features' , 'UsePortalDialogs' ) ;
30+ app . commandLine . appendSwitch ( 'ozone-platform-hint' , 'auto' ) ;
2931
3032/**
3133 * Settings
You can’t perform that action at this time.
0 commit comments