Skip to content

release: prepare v0.2.11 #409

release: prepare v0.2.11

release: prepare v0.2.11 #409

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
name: ${{ matrix.os }} / Node ${{ matrix.node }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
node: [20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run check
- run: npm run lint
- run: npm run format:check
- run: npm run docs:cli:check
- run: npm run docs:bilingual:check
- run: npm run test:core
- run: npm run build
- name: Verify release packages
if: runner.os == 'Linux'
run: npm run release:verify
- name: Windows command and installer regression tests
if: runner.os == 'Windows'
run: npm run test:windows
- name: Build Windows Desktop installer
if: runner.os == 'Windows'
run: npm run build:installer:windows
- name: Verify Windows Desktop release
if: runner.os == 'Windows'
run: npm run release:verify:desktop
- name: Benchmarks
if: runner.os == 'Linux'
run: npm run benchmark && npm run benchmark:agent
- name: Deterministic Context explainability benchmark
if: runner.os == 'Linux'
run: npm run benchmark:explainability
- name: Deterministic Desktop plugin benchmark
if: runner.os == 'Windows'
run: npm run benchmark:desktop