Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: browser-actions/setup-chrome
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: setup-chrome-v1.6.1
Choose a base ref
...
head repository: browser-actions/setup-chrome
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: setup-chrome-v1.6.2
Choose a head ref
  • 5 commits
  • 15 files changed
  • 2 contributors

Commits on May 4, 2024

  1. chore: Use vitest (#539)

    Replace jest with [Vitest](https://vitest.dev/).
    ueokande authored May 4, 2024
    Configuration menu
    Copy the full SHA
    8c84ae6 View commit details
    Browse the repository at this point in the history
  2. fix: use cached dir on linux (#540)

    The setup-chrome had returned the temporary directory instead of
    tool-cache. This Pull Request fix as returning installed tool-cache directory.
    ueokande authored May 4, 2024
    Configuration menu
    Copy the full SHA
    4e11c0b View commit details
    Browse the repository at this point in the history
  3. chore: ignore formatting package.json

    Ignore formatting package.json by the biome.js. The release-please re-formats
    the package.json file when the version is updated. That modifies the
    package.json with the different formatting than biome.js.
    ueokande committed May 4, 2024
    Configuration menu
    Copy the full SHA
    18cfc76 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2024

  1. fix: install package with sudo for non-root users by default (#546)

    This change is to install dependencies with `sudo` for non-root users by
    default. The action identify the current UID and enable `sudo` if the
    UID is not 0. Users can disable using `sudo` by setting the `no-sudo:
    true` in the action input.
    
    ```yaml
    steps:
      - uses: browser-actions/setup-chrome@v1
        with:
          chrome-version: 120
          install-dependencies: true
          no-sudo: true
    ```
    
    Close #544
    ueokande committed May 15, 2024
    Configuration menu
    Copy the full SHA
    5325b7d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dc5c231 View commit details
    Browse the repository at this point in the history
Loading