/setup-edge

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

Primary LanguageTypeScriptMIT LicenseMIT

typescript-action status

setup-edge

This action setups Microsoft Edge in the GitHub Actions environment.

  • Install and setup specific version of Microsoft Edge
  • Windows Support
  • macOS Support
  • Linux Support

Usage

Basic usage:

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

Install Edge Beta:

steps:
  - uses: browser-actions/setup-edge@latest
    with:
      edge-version: beta
  - 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", and "canary". Default: stable.

License

MIT