Skip to content

build(deps-dev): bump jest from 29.7.0 to 30.2.0 #143

build(deps-dev): bump jest from 29.7.0 to 30.2.0

build(deps-dev): bump jest from 29.7.0 to 30.2.0 #143

Workflow file for this run

name: CI
permissions:
contents: read
pull-requests: write
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test-build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [25.x, 24.x, 22.x]
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Security audit
run: npm audit --audit-level=moderate