We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 310e8e9 commit 4bdd328Copy full SHA for 4bdd328
.github/workflows/Install-chromium.yml
@@ -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
19
+ chromium --version
0 commit comments