Files
gemini-cli/.github/workflows/ci-bundling-trial.yml
T
2026-04-16 17:54:50 +00:00

38 lines
635 B
YAML

name: 'Bundling Trial CI'
on:
push:
branches:
- 'feat/ci-bundling-revamp'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test_suspect:
name: 'Test (Linux) - Suspect Tests'
runs-on: 'gemini-cli-ubuntu-16-core'
steps:
- name: 'Checkout'
uses: 'actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8'
- name: 'Setup and Build'
uses: './.github/actions/setup-gemini'
with:
mode: 'source'
- name: 'Run Suspect Tests'
run: 'npx vitest run --pool=forks packages/cli'
shell: 'bash'