Skip to content

fix(strategy-registry): normalize state to snapshot so custom prompt … #42

fix(strategy-registry): normalize state to snapshot so custom prompt …

fix(strategy-registry): normalize state to snapshot so custom prompt … #42

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Versions
run: |
node --version
npm --version
ls -la
- name: Install
run: npm install --no-audit --no-fund
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Verify type definitions emitted
run: |
test -f dist/index.d.ts || (echo "::error::dist/index.d.ts missing" && exit 1)
echo "Generated $(find dist -name '*.d.ts' | wc -l) declaration files."