Skip to content

Bump eslint from 8.50.0 to 8.52.0 in /client #101

Bump eslint from 8.50.0 to 8.52.0 in /client

Bump eslint from 8.50.0 to 8.52.0 in /client #101

Workflow file for this run

on:
push:
branches: [main]
pull_request:
paths:
- 'client/**'
name: client
env:
NODE_VERSION: 18
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client
steps:
- uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
cache-dependency-path: client/package-lock.json
- run: npm ci
- run: npm run lint