Skip to content

chore: validator audit — add ESLint config with TS parser, CHANGELOG.… #30

chore: validator audit — add ESLint config with TS parser, CHANGELOG.…

chore: validator audit — add ESLint config with TS parser, CHANGELOG.… #30

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
name: Build & Typecheck (Node 20.x)
steps:
- uses: actions/checkout@v6
- name: Use Node.js 20
uses: actions/setup-node@v6
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Security audit (high+)
run: npm audit --audit-level=high
- name: Build
run: npm run build