From d1feafdd1f25ab9f09b605831f01f483aaabb410 Mon Sep 17 00:00:00 2001 From: Kevin Rohlf <123676073+KevinRohlf@users.noreply.github.com> Date: Wed, 20 Nov 2024 15:43:35 +0100 Subject: [PATCH] chore: remove code coverage workflow (#130) --- .github/workflows/ci.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d3717736..c82674bf3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,36 +72,6 @@ jobs: name: coverage-${{ runner.os }} path: coverage/ - coverage: - runs-on: ubuntu-latest - needs: [test] - if: ${{ success() && github.actor != 'dependabot[bot]' }} - - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: '18' - - name: Cache node_modules - uses: actions/cache@v3 - env: - cache-name: cache-node-modules - with: - path: ~/.npm - key: ${{ runner.os }}-coverage-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} - restore-keys: ${{ runner.os }}-coverage-${{ env.cache-name }}- - - - uses: actions/download-artifact@v3 - with: - name: coverage-${{ runner.os }} - - - run: npm ci - - run: npm run codegen:apollo - - - uses: paambaati/codeclimate-action@v3.0.0 - env: - CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} - storybook: runs-on: ${{ matrix.os }}