Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
play

GitHub Action

Setup Edge

v1.0.0

Setup Edge

play

Setup Edge

Install and setup Microsoft Edge

Installation

Copy and paste the following snippet into your .yml file.

              

- name: Setup Edge

uses: browser-actions/[email protected]

Learn more about this action in browser-actions/setup-edge

Choose a version

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

Parameters

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

License

MIT