Skip to content

Commit

Permalink
chore: hardcode edgedriver version in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelly Selden committed Sep 3, 2024
1 parent 8f43382 commit 3cab2b4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ on:
env:
DEBUG: "@faltest*,faltest-helpers"
DETECT_CHROMEDRIVER_VERSION: true
DETECT_EDGEDRIVER_VERSION: true

jobs:
lint-git:
Expand Down Expand Up @@ -64,6 +63,8 @@ jobs:
# - uses: browser-actions/setup-edge@latest

- run: yarn install --frozen-lockfile
env:
EDGEDRIVER_VERSION: 128.0.2739.56
- run: yarn test
env:
WEBDRIVER_HEADLESS: true
Expand All @@ -89,6 +90,8 @@ jobs:
node-version: ${{ matrix.node }}

- run: yarn install --frozen-lockfile
env:
EDGEDRIVER_VERSION: ${{ matrix.os == 'ubuntu-latest' && '128.0.2739.56' || matrix.os == 'macos-latest' && '128.0.2739.61' || '128.0.2739.54' }}
- if: runner.os == 'Linux'
# https://github.com/juliangruber/browser-run/issues/147#issue-495226343
run: Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
Expand Down

0 comments on commit 3cab2b4

Please sign in to comment.