Skip to content

Commit

Permalink
adds lint action
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank M. Taylor committed Apr 18, 2024
1 parent 110f1d8 commit 19cd467
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Lint

on: [push]

jobs:
run-linters:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2

- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 18

- name: Install dependencies
run: npm ci

- name: Run linters
uses: wearerequired/lint-action@v2
with:
eslint: true

0 comments on commit 19cd467

Please sign in to comment.