Skip to content

Bump eslint-plugin-n from 17.7.0 to 17.9.0 #386

Bump eslint-plugin-n from 17.7.0 to 17.9.0

Bump eslint-plugin-n from 17.7.0 to 17.9.0 #386

Workflow file for this run

name: Test ESLint Config
on: [workflow_dispatch, push, pull_request]
permissions: read-all
jobs:
Testing:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [18, 20, 21]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install Package
run: npm ci
- name: Install ESLint
run: npm install -g eslint
- name: Run Test
run: npm test