Skip to content

feat: ao demo command + 3 polished workflows (v0.4.0) #18

feat: ao demo command + 3 polished workflows (v0.4.0)

feat: ao demo command + 3 polished workflows (v0.4.0) #18

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Clone agency-agents-zh for tests
run: git clone --depth 1 https://github.com/jnMetaCode/agency-agents-zh.git
- name: Run tests
run: npm test