Skip to content

Lint

Lint #264

Workflow file for this run

name: Lint
run-name: Lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
lint:
name: Run Lint Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '21.7.3'
- name: Install Dependencies
run: npm ci
- name: Run Linter
run: npm run lint