Skip to content

Add Lint GitHub workflow #3

Add Lint GitHub workflow

Add Lint GitHub workflow #3

Workflow file for this run

name: ESLint
on: [push]
jobs:
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run eslint