From 2ca34e82f8bad1a58e202eb0dd0f97276d2d5fe0 Mon Sep 17 00:00:00 2001 From: einSelbst Date: Wed, 26 Jan 2022 19:25:02 +0100 Subject: [PATCH 1/2] ci: re-enable eslint-plus action using an updated fork see https://github.com/bradennapier/eslint-plus-action/issues/72 --- .github/workflows/eslint.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index 7fdc8a9a..08c3be1e 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -38,8 +38,8 @@ jobs: eslint: name: Run ESLint needs: pre_job - if: false # not ready for eslint 8, see https://github.com/bradennapier/eslint-plus-action/issues/72 - #if: ${{ needs.pre_job.outputs.should_skip != 'true' }} + # if: false # not ready for eslint 8, see https://github.com/bradennapier/eslint-plus-action/issues/72 + if: ${{ needs.pre_job.outputs.should_skip != 'true' }} runs-on: ubuntu-latest strategy: @@ -95,7 +95,8 @@ jobs: ${{ runner.os }}-yarn- - name: Run Eslint - uses: bradennapier/eslint-plus-action@v3.4.2 + # uses: bradennapier/eslint-plus-action@v3.4.2 + uses: Maggi64/eslint-plus-action@master with: reportIgnoredFiles: true issueSummaryType: full From 23ad85e33e97a6d66d1745f236c6d71a84ede5f5 Mon Sep 17 00:00:00 2001 From: einSelbst Date: Wed, 26 Jan 2022 19:28:34 +0100 Subject: [PATCH 2/2] ci: don't skip eslint-plus, prejob strange --- .github/workflows/eslint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index 08c3be1e..7f19b490 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -39,7 +39,7 @@ jobs: name: Run ESLint needs: pre_job # if: false # not ready for eslint 8, see https://github.com/bradennapier/eslint-plus-action/issues/72 - if: ${{ needs.pre_job.outputs.should_skip != 'true' }} + # if: ${{ needs.pre_job.outputs.should_skip != 'true' runs-on: ubuntu-latest strategy: