Skip to content
This repository was archived by the owner on Feb 26, 2026. It is now read-only.

docs: rewrite readme with 6 named agents, p1/p2 pipelines, openclaw p… #354

docs: rewrite readme with 6 named agents, p1/p2 pipelines, openclaw p…

docs: rewrite readme with 6 named agents, p1/p2 pipelines, openclaw p… #354

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Type check
run: npm run typecheck
- name: Lint
run: npm run lint
- name: Scan for PII
run: npm run scan:pii
- name: Test
run: npm test
- name: Coverage
run: npm run test:coverage
if: matrix.node-version == 20
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
if: matrix.node-version == 20
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/lcov.info
flags: unittests
name: ari-coverage
fail_ci_if_error: false
verbose: true
security:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Audit dependencies
run: npm audit --audit-level=high
continue-on-error: true
- name: Build
run: npm run build
- name: Security tests
run: npm test -- tests/security/