Skip to content

Bump express from 4.21.2 to 4.22.1 #673

Bump express from 4.21.2 to 4.22.1

Bump express from 4.21.2 to 4.22.1 #673

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
run: |
npm ci --ignore-scripts &&
npm run postinstall
- name: Lint package
run: npm run lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
run: |
npm ci --ignore-scripts &&
npm run postinstall
- name: Test package
run: npm test