Merges FN-3183/FN-3186 (priority picker in quick-entry box) and FN-3189 (CLI slow-lane test gating and CI lane) into the codebase. The quick-entry box gains inline priority selection, while the test suite introduces explicit slow/pre-release lane classification and a corresponding CI gate in the wor Fusion-Task-Id: FN-3189
46 lines
1.0 KiB
YAML
46 lines
1.0 KiB
YAML
name: CI
|
|
|
|
# CI auto-trigger disabled per FN-1541 — workflow preserved for manual use via workflow_dispatch
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
ci:
|
|
name: Build & Test
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
node-version: "24"
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
node-version: "24"
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v5
|
|
with:
|
|
node-version: "24"
|
|
cache: pnpm
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Verify workspace bootstrap contract (lint -> test -> build)
|
|
run: pnpm verify:workspace
|
|
|
|
- name: Install Bun
|
|
uses: oven-sh/setup-bun@v2
|
|
|
|
- name: Run CLI slow lane (opt-in suites)
|
|
run: pnpm test:slow-cli
|
|
|
|
- name: Build standalone binary
|
|
run: pnpm --filter @runfusion/fusion build:exe
|
|
|
|
- name: Verify binary exists
|
|
run: test -f packages/cli/dist/fn
|