Skip to content

feat: ai

feat: ai #28

Workflow file for this run

name: CI / Tests
on:
pull_request:
branches: ["*"]
push:
branches: ["main"]
merge_group:
workflow_dispatch:
workflow_call:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
FORCE_COLOR: 3
NODE_VERSION: 20.x
jobs:
test:
name: 🧪 Test
runs-on: ubuntu-latest
steps:
- name: ✅ Checkout code
uses: actions/checkout@v4
- name: 🔨 Setup
uses: ./.github/workflows/setup
with:
node-version: ${{ env.NODE_VERSION }}
- name: 🛻 Lint
run: bun lint
- name: 🧪 Typecheck
run: bun typecheck