Skip to content

Bump express from 5.1.0 to 5.2.1 #29

Bump express from 5.1.0 to 5.2.1

Bump express from 5.1.0 to 5.2.1 #29

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Run tests
run: npm test