Skip to content

adds feature to open a coding agent #8

adds feature to open a coding agent

adds feature to open a coding agent #8

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install
- run: bun format:check
- run: bun lint
- run: bun typecheck
build:
name: Build
runs-on: ubuntu-latest
needs: [check]
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install
- run: bun compile
- uses: actions/upload-artifact@v4
with:
name: devhub-linux-x64
path: dist/devhub