Skip to content

fix: upgrade eslint-plugin-n from 16.6.1 to 16.6.2 #57

fix: upgrade eslint-plugin-n from 16.6.1 to 16.6.2

fix: upgrade eslint-plugin-n from 16.6.1 to 16.6.2 #57

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]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, lint, and test
run: |
npm ci
npm run vulnerabilities
npm run lint
npm test
env:
CI: true