From aab43d52475d98f8f3238880df57f3e625a49e15 Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Tue, 18 Jun 2024 12:46:58 +0200 Subject: [PATCH] refactor(workflows): remove qodana scan workflow file --- .github/workflows/scan.yml | 53 -------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 .github/workflows/scan.yml diff --git a/.github/workflows/scan.yml b/.github/workflows/scan.yml deleted file mode 100644 index fc9be9bf..00000000 --- a/.github/workflows/scan.yml +++ /dev/null @@ -1,53 +0,0 @@ -name: Qodana Scan - -on: - push: - branches: - - master - -concurrency: - group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} - cancel-in-progress: true - -jobs: - qodana-scan: - if: false - - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [ubuntu-latest] - node: [18] - - steps: - - name: Checkout 🛎 - uses: actions/checkout@master - with: - fetch-depth: 0 - - - name: Setup node env 🏗 - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node }} - check-latest: true - - - name: Install Dependencies 👨🏻‍💻 - uses: ./.github/actions/install-dependencies - - - name: Setup Turbo cache 🏎️ - id: turbo-cache - uses: actions/cache@v2 - with: - path: .turbo - key: turbo-${{ runner.os }}-${{ github.sha }} - restore-keys: | - turbo-${{ runner.os }}- - - - name: Build Library 👷 - run: pnpm run build --cache-dir=.turbo - - - name: Qodana Scan 🔍 - uses: JetBrains/qodana-action@main - env: - QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}