From 2c98913fb92e25883d24c8d9cd8155936f5d8166 Mon Sep 17 00:00:00 2001 From: KelvinTegelaar <49186168+KelvinTegelaar@users.noreply.github.com> Date: Mon, 27 Jun 2022 13:31:45 +0200 Subject: [PATCH] Delete Run_Linters.yml --- .github/workflows/Run_Linters.yml | 51 ------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .github/workflows/Run_Linters.yml diff --git a/.github/workflows/Run_Linters.yml b/.github/workflows/Run_Linters.yml deleted file mode 100644 index 0865be46671c..000000000000 --- a/.github/workflows/Run_Linters.yml +++ /dev/null @@ -1,51 +0,0 @@ ---- -name: Lint Code Base -on: # yamllint disable-line rule:truthy - pull_request_target: - branches: - - master - - main - - dev -permissions: - issues: write - pull-requests: write - checks: write -concurrency: - group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }} - cancel-in-progress: true -jobs: - megalinter: - name: MegaLinter - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - uses: megalinter/megalinter/flavors/javascript@v5 - name: Lint - env: - VALIDATE_ALL_CODEBASE: true - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Archive production artifacts - if: ${{ success() }} || ${{ failure() }} - uses: actions/upload-artifact@v2 - with: - name: MegaLinter reports - path: | - report - mega-linter.log - eslint: - name: ESLint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 0 - - uses: actions/setup-node@v2 - with: - node-version: '16' - - uses: reviewdog/action-eslint@v1 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - reporter: github-pr-review - eslint_flags: 'src/'