Skip to content

ESLint

ESLint #1

Workflow file for this run

name: ESLint
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Run ESLint
run: npm run lint