Skip to content

Bump express from 4.21.1 to 4.21.2 #73

Bump express from 4.21.1 to 4.21.2

Bump express from 4.21.1 to 4.21.2 #73

Workflow file for this run

name: "Tests"
on:
push:
paths:
- "lib/**"
- "test/**"
- ".github/workflows/tests.yml"
- "package.json"
- "package-lock.json"
- "Gruntfile.js"
pull_request:
paths:
- "lib/**"
- "test/**"
- ".github/workflows/tests.yml"
- "package.json"
- "package-lock.json"
- "Gruntfile.js"
jobs:
build:
name: "Run tests"
runs-on: ubuntu-latest
steps:
- name: "Checkout the repository"
uses: actions/checkout@v4
- name: "Set up Node 18"
uses: actions/setup-node@v4
with:
node-version: 18
- name: "Install Node dependencies"
run: |
npm install
- name: "Run lint"
run: |
npm run lint
- name: "Run tests"
run: |
npm run test