Skip to content

[npm-dev]: Bump eslint from 9.14.0 to 9.18.0 #161

[npm-dev]: Bump eslint from 9.14.0 to 9.18.0

[npm-dev]: Bump eslint from 9.14.0 to 9.18.0 #161

Workflow file for this run

name: ESLint
on:
push:
paths: [ "**/*.{cjs,mjs,js}" ]
pull_request:
branches: [ "master" ]
jobs:
build:
name: Ubuntu / Node.js (20.x)
runs-on: ubuntu-latest
env:
NODE_ENV: development
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js / 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'
- name: Clean install the project
run: npm ci
- name: Lint the project
run: npm run lint