Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenlu137 authored Jan 29, 2025
1 parent 628a3aa commit 2c218a9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,12 @@ jobs:
- name: Install Chrome (Windows)
if: matrix.os == 'windows-latest'
shell: powershell
run: |
choco install googlechrome -y
$Path = $env:TEMP + '\chrome_installer.exe'
Invoke-WebRequest -Uri 'https://dl.google.com/chrome/install/latest/chrome_installer.exe' -OutFile $Path
Start-Process -FilePath $Path -Args '/silent /install' -Wait
Remove-Item -Path $Path
- name: Install dependencies
run: |
Expand Down

0 comments on commit 2c218a9

Please sign in to comment.