Skip to content

Integrate Vinext support across CLI, web, and templates #504

Integrate Vinext support across CLI, web, and templates

Integrate Vinext support across CLI, web, and templates #504

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 Node.js
uses: actions/setup-node@v4
with:
node-version-file: package.json
check-latest: true
- 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 Template Generator
run: cd packages/template-generator && 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