Skip to content
Closed
Changes from all commits
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
34 changes: 17 additions & 17 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:
jobs:
LintPython:
name: Python / Lint
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
Expand All @@ -34,7 +34,7 @@ jobs:

TestJS:
name: JS / Build + Test
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
Expand All @@ -58,7 +58,7 @@ jobs:

BuildWheel:
name: Build JS + Python Wheel
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name == github.repository
needs: [BuildWheel]
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 5
environment: testpypi
permissions:
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
TestMCPWheel:
name: MCP / Integration (wheel)
needs: [BuildWheel]
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:
SmokeTestExtras:
name: Smoke / Optional Extras
needs: [BuildWheel]
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:

TestPython:
name: Python / Test
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
Expand All @@ -305,7 +305,7 @@ jobs:

TestPythonMaxVersions:
name: Python / Test (Max Versions)
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
Expand Down Expand Up @@ -334,7 +334,7 @@ jobs:

TestPythonWindows:
name: Python / Test (Windows)
runs-on: depot-windows-2025
runs-on: windows-latest
timeout-minutes: 15
continue-on-error: true
steps:
Expand All @@ -357,7 +357,7 @@ jobs:
TestStorybook:
name: Storybook Playwright Tests
needs: [BuildWheel]
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -397,7 +397,7 @@ jobs:
TestStaticEmbed:
name: Static Embed Playwright Tests
needs: [BuildWheel]
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -430,7 +430,7 @@ jobs:

StylingScreenshots:
name: Styling Screenshots (Before / After)
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 25
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -531,7 +531,7 @@ jobs:
TestServer:
name: Server Playwright Tests
needs: [BuildWheel]
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -568,7 +568,7 @@ jobs:
TestMarimo:
name: Marimo Playwright Tests
needs: [BuildWheel]
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 4
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -607,7 +607,7 @@ jobs:
TestWASMMarimo:
name: WASM Marimo Playwright Tests
needs: [BuildWheel]
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 4
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -649,7 +649,7 @@ jobs:

CheckDocs:
name: Docs / Build + Check Links
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
Expand All @@ -676,7 +676,7 @@ jobs:
TestJupyterLab:
name: JupyterLab Playwright Tests
needs: [BuildWheel]
runs-on: depot-ubuntu-latest
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
Expand Down
Loading