Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/browser-actions/setup-edge

Set up your GitHub Actions workflow with a specific version of Microsoft Edge
https://github.com/browser-actions/setup-edge

actions edge github-actions

Last synced: about 1 month ago
JSON representation

Set up your GitHub Actions workflow with a specific version of Microsoft Edge

Awesome Lists containing this project

README

        


typescript-action status

# setup-edge

This action setups Microsoft Edge in the GitHub Actions environment.

- [X] Windows Support
- [X] macOS Support
- [X] Linux Support

## Usage

Basic usage:

```yaml
steps:
- uses: browser-actions/setup-edge@v1
- name: Print Edge version
run: (Get-Item (Get-Command msedge).Source).VersionInfo.ProductVersion
```

Install Edge Beta:

```yaml
steps:
- uses: browser-actions/setup-edge@v1
with:
edge-version: beta
- name: Print Edge version
run: (Get-Item (Get-Command msedge).Source).VersionInfo.ProductVersion
```

### Input

- `edge-version`:
*(Optional)* The Edge version to be installed. Supported versions are "stable", "beta", "dev", and "canary". Default: `stable`.

### Output

- `edge-version`: The installed Edge version. Useful when given a latest version.
- `edge-path`: The installed Edge path.

## License

[MIT](LICENSE)