Skip to content

Commit

Permalink
Create macos-resolution-test-orig.yml.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-pyshnoi committed Nov 14, 2023
0 parents commit 17ca0a4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/macos-resolution-test-orig.yml.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: macos-resolution-test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:

jobs:
run_macos_resolution_check:
runs-on: macos-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: old screen resolution
run: system_profiler SPDisplaysDataType | grep Resolution

- name: change screen resolution
id: demo
run: |
"/Library/Application Support/VMware Tools/vmware-resolutionSet" 2560 1440
sleep 5
- name: new screen resolution
run: system_profiler SPDisplaysDataType | grep Resolution

0 comments on commit 17ca0a4

Please sign in to comment.