Skip to content

Update all non-major dependencies #515

Update all non-major dependencies

Update all non-major dependencies #515

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install Dependencies
run: npm install
working-directory: ./client
- name: Run ESLint
run: npm run lint
working-directory: ./client