mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-06-12 04:17:15 -07:00
38 lines
635 B
YAML
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'
|
|
|
|
|
|
|
|
|
|
|
|
|