Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/browser-actions/setup-edge
- Owner: browser-actions
- License: mit
- Created: 2021-01-12T13:31:03.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-02T23:45:48.000Z (5 months ago)
- Last Synced: 2024-11-11T15:20:33.968Z (about 1 month ago)
- Topics: actions, edge, github-actions
- Language: TypeScript
- Homepage: https://github.com/marketplace/actions/setup-edge
- Size: 876 KB
- Stars: 5
- Watchers: 1
- Forks: 6
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# 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)