Skip to content

feat(code): add reproducible coding-agent walkthrough #14

feat(code): add reproducible coding-agent walkthrough

feat(code): add reproducible coding-agent walkthrough #14

Workflow file for this run

# Copyright 2025-2026 H2O.ai, Inc.
# SPDX-License-Identifier: Apache-2.0
name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
backend:
name: Lint, typecheck, test (backend)
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint
run: bun run lint
- name: Typecheck
run: bun run typecheck
- name: Test
run: bun run test
dashboard:
name: Test and build (dashboard)
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
working-directory: dashboard
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Test
run: bun run test
- name: Build
run: bun run build