Skip to content

Commit

Permalink
Release for 42f6313
Browse files Browse the repository at this point in the history
  • Loading branch information
ueokande committed Jan 31, 2021
1 parent 7935987 commit 2dbefc9
Show file tree
Hide file tree
Showing 3 changed files with 5,427 additions and 5 deletions.
30 changes: 29 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,32 @@
</p>

# setup-edge
Set up your GitHub Actions workflow with a specific version of Microsoft Edge

This action setups Microsoft Edge in the GitHub Actions environment.

- [X] Install and setup specific version of Microsoft Edge
- [X] Windows Support
- [ ] macOS Support
- [ ] Linux Support

## Usage

Basic usage:

```yaml
steps:
- uses: browser-actions/setup-edge@latest
with:
edge-version: stable
- name: Print Edge version
run: (Get-Item (Get-Command msedge).Source).VersionInfo.ProductVersion
```
## Parameters
- `edge-version`:
*(Optional)* The Edge version to be installed. Supported versions are "stable", "beta", "dev". Default: `stable`.

## License

[MIT](LICENSE)
6 changes: 6 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: 'Setup Edge'
description: 'Install and setup Microsoft Edge'
author: "Shin'ya Ueoka"
input:
edge-version:
description: |-
The Edge version to be installed. Supported versions are "stable", "beta", "dev"
default: stable
required: false
runs:
using: 'node12'
main: 'index.js'
Loading

0 comments on commit 2dbefc9

Please sign in to comment.