Skip to content

Fix CI PTY test failures with increased timeouts and MWE #47

Fix CI PTY test failures with increased timeouts and MWE

Fix CI PTY test failures with increased timeouts and MWE #47

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
actions: read
jobs:
test:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Cache Bun dependencies
uses: actions/cache@v5
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
restore-keys: |
${{ runner.os }}-bun-
- name: Install dependencies
run: bun install
- name: Type check
run: bun run typecheck
# big rework needed to fix lint issues
# - name: Lint
# run: bun run lint
- name: Check formatting
run: bun run format:check
- name: Build
run: bun run build:all:prod
- name: Run tests
run: bun test --concurrency 1
dependency-review:
runs-on: ubuntu-24.04
if: github.event_name == 'pull_request'
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Dependency Review
uses: actions/dependency-review-action@v4