forked from browser-actions/setup-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
33 lines (33 loc) · 1.08 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: 'Setup Chrome'
description: 'Install and setup Google Chrome and Chromium'
author: "Shin'ya Ueoka"
inputs:
chrome-version:
description: |-
The Google Chrome/Chromium version to install and use.
default: latest
required: false
install-dependencies:
description: |-
Install dependent packages for Google Chrome/Chromium (Linux only).
default: false
install-chromedriver:
description: |-
Install the compatible version of ChromeDriver with the installed Google Chrome/Chromium.
default: false
no-sudo:
description: |-
Do not use sudo to install Google Chrome/Chromium (Linux only).
default: false
outputs:
chrome-version:
description: 'The installed Google Chrome/Chromium version. Useful when given a latest version.'
chrome-path:
description: 'The installed Google Chrome/Chromium path.'
chromedriver-version:
description: 'The installed ChromeDriver version. Useful when given a latest version.'
chromedriver-path:
description: 'The installed ChromeDriver path.'
runs:
using: 'node20'
main: 'index.js'