build: reenable graphics effects for macOS tests (#46454)

This commit is contained in:
Niklas Wenzel 2025-04-03 04:33:12 +02:00 committed by GitHub
parent a21c805ece
commit 682ea345ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -118,6 +118,12 @@ jobs:
- name: Turn off the unexpectedly quit dialog on macOS - name: Turn off the unexpectedly quit dialog on macOS
if: ${{ inputs.target-platform == 'macos' }} if: ${{ inputs.target-platform == 'macos' }}
run: defaults write com.apple.CrashReporter DialogType server run: defaults write com.apple.CrashReporter DialogType server
- name: Reenable graphics effects on macOS
if: ${{ inputs.target-platform == 'macos' }}
run: |
# These options to reduce graphics effects were enabled upstream in https://github.com/actions/runner-images/pull/11877
defaults write com.apple.universalaccess reduceMotion -bool false
defaults write com.apple.universalaccess reduceTransparency -bool false
- name: Checkout Electron - name: Checkout Electron
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with: with: