Skip to content

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

License

Notifications You must be signed in to change notification settings

browser-actions/setup-edge

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f487190 · Feb 11, 2025
Feb 11, 2025
May 4, 2024
May 4, 2024
Jan 12, 2021
May 4, 2024
May 4, 2024
Jan 12, 2021
Sep 17, 2023
May 4, 2024
May 4, 2024
May 4, 2024
May 4, 2024
May 4, 2024
May 1, 2021

Repository files navigation

typescript-action status

setup-edge

This action setups Microsoft Edge in the GitHub Actions environment.

  • Windows Support
  • macOS Support
  • Linux Support

Usage

Basic usage:

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

Install Edge Beta:

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