Skip to content

chore(deps): bump the npm-minor-and-patch group across 1 directory with 6 updates #1097

chore(deps): bump the npm-minor-and-patch group across 1 directory with 6 updates

chore(deps): bump the npm-minor-and-patch group across 1 directory with 6 updates #1097

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build-check-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Security audit (npm)
run: npm audit --audit-level=high
- name: Lint + typecheck
run: npm run check
- name: Tests
run: npm run test:models && npm run test:context && npm run test:security
- name: Build
run: npm run build
- name: Validate manifest
run: npm run validate