Skip to content

Add visual AI readiness reports with batch processing #7

Add visual AI readiness reports with batch processing

Add visual AI readiness reports with batch processing #7

Workflow file for this run

name: CI
on:
push:
branches: [main, vnext]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm run test
- name: Build
run: npm run build
- name: Verify CLI
run: |
chmod +x dist/index.js
node dist/index.js --version
- name: Upload coverage
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage
if-no-files-found: ignore