Skip to content

Bump eslint from 8.57.0 to 9.8.0 #583

Bump eslint from 8.57.0 to 9.8.0

Bump eslint from 8.57.0 to 9.8.0 #583

Workflow file for this run

name: Code Quality checks
on:
pull_request:
branches: [main]
concurrency:
group:
${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
prettier:
name: Prettier
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "21.x"
cache: npm
- name: Install dependencies
run: npm install
- name: Check formatting with Prettier
run: npm run prettier:check:ci