Skip to content

Bump express from 4.18.3 to 4.21.0 #34

Bump express from 4.18.3 to 4.21.0

Bump express from 4.18.3 to 4.21.0 #34

Workflow file for this run

name: CI
on: [push]
jobs:
test:
name: Build and Test
timeout-minutes: 15
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18.x']
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test