Skip to content

npm(deps): bump express from 5.1.0 to 5.2.1 #535

npm(deps): bump express from 5.1.0 to 5.2.1

npm(deps): bump express from 5.1.0 to 5.2.1 #535

Workflow file for this run

name: Lint and Format
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint JavaScript
run: npm run lint
- name: Check formatting with Prettier
run: npm run format:check