From: Jérôme Benoit Date: Thu, 25 Jul 2024 16:41:10 +0000 (+0200) Subject: build(ci): reenabled linting on web ui code X-Git-Tag: ocpp-server@v1.5.1~20 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=5a1832ce790d0398fa031e738db47eb94fa975ec;p=e-mobility-charging-stations-simulator.git build(ci): reenabled linting on web ui code Signed-off-by: Jérôme Benoit --- 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