Skip to content

Commit

Permalink
adds 'Eslint' job in 'Lintng' Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduardo Pereira committed Jan 10, 2025
1 parent 52a5ca1 commit 38fa4a6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,17 @@ jobs:
- run: npm ci

- run: npm run lint:prettier:check

eslint:
name: EsLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: "18.20"

- run: npm ci

- run: npm run lint:eslint:check

0 comments on commit 38fa4a6

Please sign in to comment.