Skip to content

chore(deps): bump eslint from 8.57.0 to 9.15.0 #521

chore(deps): bump eslint from 8.57.0 to 9.15.0

chore(deps): bump eslint from 8.57.0 to 9.15.0 #521

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
jobs:
lint:
name: Lint JS
runs-on: ubuntu-latest
env:
CI: true
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.ref}}
fetch-depth: 0
- name: Setup Node 🔧
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install Dependencies 🔧
run: npm ci
- name: Lint
run: npm run lint