Skip to content

ESLint Check

ESLint Check #1

Workflow file for this run

name: ESLint Check
on:
workflow_dispatch:
pull_request:
branches: [ "main" ]
jobs:
lint:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Dependacnies
run: npm install
- name: Run ESLint quietly
run: npx eslint . --quiet