You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Setup Firefox
v1.0.1
This action sets by Firefox for use in actions by:
- downloading and caching a version of Firefox by version and add to PATH
See action.yml
Basic usage:
steps:
- uses: browser-actions/setup-firefox@v1
- run: firefox --version
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
firefox: [ '84.0', 'latest-beta', 'latest-devedition', 'latest-esr', 'latest' ]
name: Firefox ${{ matrix.firefox }} sample
steps:
- name: Setup firefox
uses: browser-actions/setup-firefox@v1
with:
firefox-version: ${{ matrix.firefox }}
- run: firefox --version