From 8928909753c59561ad5ae4a754858553d6a00dd9 Mon Sep 17 00:00:00 2001 From: Isaac Way Date: Fri, 10 Mar 2023 19:05:22 -0600 Subject: [PATCH] Delete codecov.yml --- .github/workflows/codecov.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/codecov.yml diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml deleted file mode 100644 index f24e238..0000000 --- a/.github/workflows/codecov.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Running Code Coverage - -on: [push, pull_request] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v3 - with: - fetch-depth: 2 - - - name: Set up Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - - name: Install dependencies - run: npm install - - - name: Run tests - run: npm run test:cov - - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v1 - with: - token: ${{ secrets.CODECOV_TOKEN }}