Skip to content

docs: add daily code review report for 2026-04-12 #978

docs: add daily code review report for 2026-04-12

docs: add daily code review report for 2026-04-12 #978

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-and-lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: |
npm ci
cd server && npm ci
- name: Audit dependencies
run: |
npm audit --audit-level=high
cd server && npm audit --audit-level=high
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm test