From 5452885acc7fdf74a5829b9620be2d39887c0197 Mon Sep 17 00:00:00 2001 From: LF Barrile Date: Fri, 22 Nov 2024 11:40:45 -0300 Subject: [PATCH] comment eslint --- .../workflows/code-quality-security-tests.yml | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/code-quality-security-tests.yml b/.github/workflows/code-quality-security-tests.yml index 51a38b3f..1bcaaa1e 100644 --- a/.github/workflows/code-quality-security-tests.yml +++ b/.github/workflows/code-quality-security-tests.yml @@ -70,28 +70,28 @@ jobs: run: npm audit fix # Fix the vulnerabilities # Job to execute ESLint - ESLint: - runs-on: ubuntu-latest - name: Run ESLint for Next.js - steps: - - uses: actions/checkout@v4 + # ESLint: + # runs-on: ubuntu-latest + # name: Run ESLint for Next.js + # steps: + # - uses: actions/checkout@v4 - - uses: actions/setup-node@v3 - with: - node-version: '22' + # - uses: actions/setup-node@v3 + # with: + # node-version: '22' - - name: Set up .env file - run: | - cp .env.example .env # Copia .env.example para .env para uso local, se necessário + # - name: Set up .env file + # run: | + # cp .env.example .env # Copia .env.example para .env para uso local, se necessário - - name: Install dependencies and update ESLint packages - run: | - npm install - npm install eslint@latest eslint-config-next@latest eslint-plugin-prettier@latest eslint-plugin-react-hooks@latest + # - name: Install dependencies and update ESLint packages + # run: | + # npm install + # npm install eslint@latest eslint-config-next@latest eslint-plugin-prettier@latest eslint-plugin-react-hooks@latest - - name: Run ESLint - run: | - npm run lint + # - name: Run ESLint + # run: | + # npm run lint # Job to execute Unit Tests unit-tests: