Skip to content

Commit 4bdd328

Browse files
authored
Create Install-chromium.yml
1 parent 310e8e9 commit 4bdd328

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Install Chromium on Ubuntu 24.04
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
install-chromium:
7+
runs-on: ubuntu-24.04
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v4
11+
12+
- name: Update and Install Chromium
13+
run: |
14+
sudo apt-get update
15+
sudo snap install chromium
16+
17+
- name: Verify Chromium Installation
18+
run: |
19+
chromium --version

0 commit comments

Comments
 (0)