Skip to content
This repository was archived by the owner on Jun 9, 2026. It is now read-only.

fix: rework interactive python repl to work with cloudflare sandbox #4

fix: rework interactive python repl to work with cloudflare sandbox

fix: rework interactive python repl to work with cloudflare sandbox #4

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
check:
name: Check, Test, Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10.33.2
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 24
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm check
- name: Test
run: pnpm test
- name: Build
run: pnpm build