Aidan 65a50c6ba1
Some checks failed
Push to Docker Hub / Push Docker image to Docker Hub (push) Has been cancelled
Run ESLint / Run ESLint (push) Successful in 9m44s
ci: add lint workflow
2025-05-10 03:10:14 -04:00

31 lines
480 B
YAML

name: Run ESLint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '23'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint