Skip to content

feat: cognitive state integration, token optimization, entity lifecyc… #23

feat: cognitive state integration, token optimization, entity lifecyc…

feat: cognitive state integration, token optimization, entity lifecyc… #23

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: project/package-lock.json
- name: Install dependencies
working-directory: project
run: npm ci --omit=optional
- name: Run tests
working-directory: project
run: npm test