Skip to content

fix: drizzle env loading #164

fix: drizzle env loading

fix: drizzle env loading #164

Workflow file for this run

name: Test
on:
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true
jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Git user
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install Dependencies
run: bun install --frozen-lockfile
env:
BTS_TELEMETRY: 0
- name: Build Types
run: cd packages/types && bun run build
- name: Build and Test CLI
working-directory: apps/cli
run: bun run build && bun run test:ci
env:
AGENT: 1
BTS_TELEMETRY: 0