Skip to content

chore(deps): bump express from 4.22.1 to 5.2.1 #4

chore(deps): bump express from 4.22.1 to 5.2.1

chore(deps): bump express from 4.22.1 to 5.2.1 #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Validate server syntax
run: npm run check
- name: Validate install/doctor scripts are executable
run: |
test -x scripts/install.sh
test -x scripts/doctor.sh