Skip to content

Bump express from 4.18.2 to 4.19.2 #103

Bump express from 4.18.2 to 4.19.2

Bump express from 4.18.2 to 4.19.2 #103

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node_version:
- 16
- 18
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: npm lint
run: npm run lint
- name: npm build
run: npm run build