Skip to content

feat(memory): add memory item modal and API endpoints for memory mana… #21

feat(memory): add memory item modal and API endpoints for memory mana…

feat(memory): add memory item modal and API endpoints for memory mana… #21

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build
- name: Build docs
run: npm run docs:build
- name: Production dependency audit
run: npm audit --omit=dev --audit-level=high
- name: License summary
run: npx license-checker --production --summary