Skip to content

Merge pull request #37 from bartneck/tsconfig-improvement #25

Merge pull request #37 from bartneck/tsconfig-improvement

Merge pull request #37 from bartneck/tsconfig-improvement #25

Workflow file for this run

name: ESLint
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22.20.0"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint