Skip to content

chore(backend): bump vitest from 3.2.4 to 4.0.13 in /services/backend #823

chore(backend): bump vitest from 3.2.4 to 4.0.13 in /services/backend

chore(backend): bump vitest from 3.2.4 to 4.0.13 in /services/backend #823

Workflow file for this run

name: PR Checks
on:
pull_request:
branches:
- main
types: [opened, synchronize, reopened]
jobs:
validate:
name: Validate Changes
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint Markdown
run: npm run lint:md
- name: Frontend Build
run: npm run build:frontend
- name: Backend Build
run: npm run build:backend
- name: Frontend Lint
run: npm run lint:frontend
- name: Backend Lint
run: npm run lint:backend
- name: Check for console.log in backend
run: npm run check:no-console:backend