Skip to content

feat: add taint analysis UI components and documentation for NIM inte… #8

feat: add taint analysis UI components and documentation for NIM inte…

feat: add taint analysis UI components and documentation for NIM inte… #8

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
build-and-security:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "22"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run check
- name: Dependency audit (production, high+)
run: npm audit --omit=dev --audit-level=high
continue-on-error: true