From 5752dc2cdc7fb0da40da15ce6408f156ac7c1bca Mon Sep 17 00:00:00 2001 From: Kevin Cantrell Date: Tue, 8 Oct 2024 19:47:14 +0900 Subject: [PATCH] removed unused codecov file --- .github/workflows/develop-codeov.yml | 29 ---------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/develop-codeov.yml diff --git a/.github/workflows/develop-codeov.yml b/.github/workflows/develop-codeov.yml deleted file mode 100644 index 5b27ed7..0000000 --- a/.github/workflows/develop-codeov.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Run tests and upload coverage - -on: - push: - branches: - - "develop" -jobs: - test: - name: Run tests and collect coverage - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Set up Node - uses: actions/setup-node@v4 - - - name: Install dependencies - run: npm install - - - name: Run tests - run: npx vitest run --coverage - - - name: Upload results to Codecov - uses: codecov/codecov-action@v4 - with: - token: ${{ secrets.CODECOV_TOKEN }}