Skip to content

build(deps-dev): bump express from 4.19.2 to 4.21.2 #2390

build(deps-dev): bump express from 4.19.2 to 4.21.2

build(deps-dev): bump express from 4.19.2 to 4.21.2 #2390

Workflow file for this run

name: ci
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Cache Node.js modules
uses: actions/[email protected]
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.OS }}-node2-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node2-
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm run test