From 919dd10e79a1813cfcbdd8d94af536508170ba4e Mon Sep 17 00:00:00 2001 From: egelhaus <156946629+egelhaus@users.noreply.github.com> Date: Mon, 10 Mar 2025 16:32:24 +0100 Subject: [PATCH] Delete .github/workflows/eslint.yaml --- .github/workflows/eslint.yaml | 53 ----------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 .github/workflows/eslint.yaml diff --git a/.github/workflows/eslint.yaml b/.github/workflows/eslint.yaml deleted file mode 100644 index bcac0bf6..00000000 --- a/.github/workflows/eslint.yaml +++ /dev/null @@ -1,53 +0,0 @@ ---- -name: ESLint - -on: - push: - branches: - - dev1 - paths: - - package.json - - apps/** - - '!apps/docs/**' - - libraries/** - -jobs: - eslint: - name: Run eslint scanning - runs-on: ubuntu-latest - permissions: - contents: read - security-events: write - actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status - strategy: - matrix: - service: ["backend", "frontend"] - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup node - uses: actions/setup-node@v4 - with: - node-version: '20' - cache: 'npm' - cache-dependency-path: | - **/package-lock.json - - - name: Install ESLint - run: | - npm install eslint - npm install @microsoft/eslint-formatter-sarif@2.1.7 - - - name: Run ESLint - run: npx eslint apps/${{ matrix.service }}/ - --config apps/${{ matrix.service }}/.eslintrc.json - --format @microsoft/eslint-formatter-sarif - --output-file apps/${{ matrix.service }}/eslint-results.sarif - continue-on-error: true - - - name: Upload analysis results to GitHub - uses: github/codeql-action/upload-sarif@v3 - with: - sarif_file: apps/${{ matrix.service }}/eslint-results.sarif - wait-for-processing: true