From 5a1832ce790d0398fa031e738db47eb94fa975ec Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 25 Jul 2024 18:41:10 +0200 Subject: [PATCH] build(ci): reenabled linting on web ui code MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/workflows/autofix.yml | 2 +- .github/workflows/ci.yml | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 9be3ace3..dbfdb997 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -36,6 +36,6 @@ jobs: - working-directory: ui/web run: | pnpm format - # pnpm lint:fix + pnpm lint:fix - uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b0072f7..870993ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -127,10 +127,9 @@ jobs: - name: pnpm audit if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} run: pnpm audit --prod - # TODO: needs flat config support in vue.js eslint plugins - # - name: pnpm lint - # if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} - # run: pnpm lint + - name: pnpm lint + if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + run: pnpm lint - name: pnpm build run: pnpm build - name: pnpm test -- 2.34.1