Skip to content

build(deps-dev): bump express from 4.18.2 to 4.19.2 #40

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

build(deps-dev): bump express from 4.18.2 to 4.19.2 #40

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["node", "lts/*", "14.13.0"]
steps:
- uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Node.js dependencies
run: npm ci
- name: Run tests
run: npm test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
- name: Install Node.js dependencies
run: npm ci
- name: Run eslint & prettier
run: npm run lint