Skip to content

Commit

Permalink
Change window size in Windows CI (#5677)
Browse files Browse the repository at this point in the history
### Intent
The windows size in Windows CI was really small and causes many issues
in tests.

### Approach
Add PowerShell command to workflow to increase size

### QA Notes
All test pass in CI
  • Loading branch information
jonvanausdeln authored Dec 9, 2024
1 parent fb331da commit 54d791d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/positron-windows-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ jobs:
steps:
- uses: actions/checkout@v4


- name: Set screen resolution
shell: pwsh
run: |
Set-DisplayResolution -Width 1920 -Height 1080 -Force
- name: Setup Node
uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit 54d791d

Please sign in to comment.