Skip to content

Bump express from 4.18.2 to 4.19.2 #52

Bump express from 4.18.2 to 4.19.2

Bump express from 4.18.2 to 4.19.2 #52

Workflow file for this run

# CI workflow
name: CI
on: [ push, pull_request ]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test
env:
CI: true