Skip to content

Commit

Permalink
adds eslint job in Linting Github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasFKobernic authored Jul 15, 2024
1 parent bce31c7 commit 75e8385
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,14 @@ jobs:
node-version: "lts/hydrogen"
- 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: "lts/hydrogen"
- run: npm ci
- run: npm run lint:eslint:check

0 comments on commit 75e8385

Please sign in to comment.