Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add step to check chrome install (fail fast)
  • Loading branch information
emilykl committed Apr 3, 2026
commit 59031af4a788331c7049a09ea5408f914f538bc1
1 change: 1 addition & 0 deletions .github/workflows/ci-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: CI Builds
on:
push:
pull_request:
types: [opened, reopened]

jobs:
plotlyjs-dev-build:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: CI Formatting
on:
push:
pull_request:
types: [opened, reopened]

jobs:
check-code-formatting:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-percy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: CI Percy
on:
push:
pull_request:
types: [opened, reopened]
workflow_dispatch:

jobs:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: CI Tests
on:
push:
pull_request:
types: [opened, reopened]

jobs:
test-core:
Expand All @@ -18,10 +19,6 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up Chrome
uses: browser-actions/setup-chrome@v2.1.1
with:
install-chromedriver: true
- name: Install dependencies
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
Expand Down Expand Up @@ -56,6 +53,9 @@ jobs:
uses: browser-actions/setup-chrome@v2.1.1
with:
install-chromedriver: true
- name: Check whether we can access Chrome from Python
run: |
python -c "import webbrowser; webbrowser.get()"
- name: Install dependencies
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
Expand Down