From 7125b2265b00314e183b967b406cc7029c4ddbda Mon Sep 17 00:00:00 2001 From: Jason Finch Date: Fri, 12 Jul 2024 21:58:06 +1000 Subject: [PATCH] remove wearrerrequired/lint-action due to eslint9 incompat --- .github/workflows/lint.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7a6f13549..b84e85b54 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -39,8 +39,12 @@ jobs: run: pnpm i - name: Run linters - uses: wearerequired/lint-action@v2 - with: - eslint: true - prettier: false #runs part of eslint - autofix: false #does not work well with pull requests https://github.com/wearerequired/lint-action?tab=readme-ov-file#limitations \ No newline at end of file + run: pnpm run lint + + # Currently incompatible with ESlint 9 (https://github.com/wearerequired/lint-action/pull/799) + # - name: Run linters + # uses: wearerequired/lint-action@v2 + # with: + # eslint: true + # prettier: false #runs part of eslint + # autofix: false #does not work well with pull requests https://github.com/wearerequired/lint-action?tab=readme-ov-file#limitations \ No newline at end of file