Skip to content

feat: elevate codex with claude depth and shared runtime features #3

feat: elevate codex with claude depth and shared runtime features

feat: elevate codex with claude depth and shared runtime features #3

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run validate
- run: npm run doctor
- run: npm run release:check
- name: Coverage summary
run: npm run test:coverage