Skip to content

Run ESLint Linter

Run ESLint Linter #30

Workflow file for this run

name: Run ESLint Linter
on:
workflow_run:
workflows: ["Run Prettier Formatting"]
types:
- completed
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- 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 lint