From 38fa4a69ca3ca172f07d71d76e4f8d334041f7d9 Mon Sep 17 00:00:00 2001 From: Eduardo Pereira Date: Fri, 10 Jan 2025 15:48:08 -0300 Subject: [PATCH] adds 'Eslint' job in 'Lintng' Github Actions --- .github/workflows/linting.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/linting.yaml b/.github/workflows/linting.yaml index 28435f4..9090568 100644 --- a/.github/workflows/linting.yaml +++ b/.github/workflows/linting.yaml @@ -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