Skip to content

Bump mongoose from 9.7.1 to 9.7.2 #14

Bump mongoose from 9.7.1 to 9.7.2

Bump mongoose from 9.7.1 to 9.7.2 #14

Workflow file for this run

name: CI Pipeline
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
validate:
name: Validate (${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x, 20.x, 22.x ]
# Test on multiple active Node.js LTS releases to guarantee compatibility
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Run Syntax and Import Checks
run: npm run lint