Skip to content

Add implementation plan for LLM-based policy evaluation #379

Add implementation plan for LLM-based policy evaluation

Add implementation plan for LLM-based policy evaluation #379

Workflow file for this run

name: Test
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js 24
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run type checker
run: npm run typecheck
- name: Run format check
run: npm run format:check
- name: Run tests
run: npm test