Skip to content

Bump the minor-updates group across 1 directory with 2 updates #373

Bump the minor-updates group across 1 directory with 2 updates

Bump the minor-updates group across 1 directory with 2 updates #373

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
- name: Install
run: npm ci
- name: Security audit
run: npm audit --audit-level=high --production
- name: Typecheck, test, build
run: npm run ci
security:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
- name: Install
run: npm ci
- name: npm audit (production only)
run: npm audit --audit-level=moderate --production
- name: Check for vulnerabilities (production only)
run: npx --yes audit-ci --moderate --production