We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 958c2a7 commit 0cfd924Copy full SHA for 0cfd924
.github/workflows/ci.yml
@@ -30,6 +30,14 @@ jobs:
30
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
31
restore-keys: |
32
${{ runner.os }}-maven-
33
+ - name: Install Chrome
34
+ run: |
35
+ sudo apt-get update
36
+ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
37
+ sudo dpkg -i google-chrome-stable_current_amd64.deb || sudo apt --fix-broken install -y
38
+
39
+ - name: Verify Chrome Installation
40
+ run: google-chrome --version
41
42
# 4. Run Maven Tests
43
- name: Run TestNG tests
0 commit comments