From 99802665462a8ee4bae82015d11f1749d4acf004 Mon Sep 17 00:00:00 2001 From: StephanGerbeth Date: Mon, 16 Sep 2024 21:49:02 +0200 Subject: [PATCH] fix(git-action): remove pull_request workflow --- .github/workflows/pull_request.yml | 84 ------------------------------ .gitignore | 1 + 2 files changed, 1 insertion(+), 84 deletions(-) delete mode 100644 .github/workflows/pull_request.yml diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml deleted file mode 100644 index abb825f..0000000 --- a/.github/workflows/pull_request.yml +++ /dev/null @@ -1,84 +0,0 @@ -name: PullRequest - -on: - pull_request: - types: - - opened - - reopened - - edited - - synchronize - branches: - - beta - - main - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: true - -jobs: - install: - if: "!contains(github.event.head_commit.message, 'skip ci')" - name: Install - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [ubuntu-latest] - node: [20] - - steps: - - uses: actions/setup-node@v4 - with: - node-version: ${{ matrix.node }} - - name: Checkout Repo - uses: actions/checkout@v4 - - name: cache node_modules - uses: actions/cache@v4 - id: cache - with: - path: | - node_modules - key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }} - - - name: Install Dependencies - if: steps.cache.outputs.cache-hit != 'true' - run: npm ci - - - name: Lint - run: npm run lint - - - name: Vitest - Test & Coverage - run: npm run coverage - - - name: Archive vitest code coverage results - uses: actions/upload-artifact@v4 - with: - name: vitest-code-coverage-report - path: ./coverage/ - - sonarcloud: - name: SonarCloud - needs: install - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [ubuntu-latest] - node: [20] - - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - - name: Download vitest code coverage results - uses: actions/download-artifact@v4 - with: - name: vitest-code-coverage-report - path: ./coverage/ - - name: check - run: cd coverage && find . - - name: SonarCloud Scan - uses: SonarSource/sonarcloud-github-action@master - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/.gitignore b/.gitignore index e738f7c..bb1dae1 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ node_modules /.env /.DS_Store /coverage +/.github_old