Skip to content

Update README to reflect helmet as a peerDependency #39

Update README to reflect helmet as a peerDependency

Update README to reflect helmet as a peerDependency #39

Workflow file for this run

name: CI/CD
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 22]
name: "Lint & Test (Node ${{ matrix.node }})"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "npm"
- run: npm install
- run: npm run check