Skip to content

Update dependency eslint-plugin-n to v17.11.0 #232

Update dependency eslint-plugin-n to v17.11.0

Update dependency eslint-plugin-n to v17.11.0 #232

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 21.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, lint, and test
run: |
npm ci
npm run vulnerabilities
npm run lint
npm run cpd
npm test
env:
CI: true