From 97bae58f9b110b7572e49ff2b4fffb2af26d28ba Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Tue, 26 Oct 2021 21:32:38 +1300 Subject: [PATCH] Codecov replacing Code Climate --- .github/workflows/jest-tests.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/jest-tests.yml b/.github/workflows/jest-tests.yml index b33a9c2a..e3d01975 100644 --- a/.github/workflows/jest-tests.yml +++ b/.github/workflows/jest-tests.yml @@ -12,16 +12,11 @@ jobs: - uses: actions/setup-node@v2 with: node-version: '12' - - name: Install Code Climate test-reporter - run: | - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - name: Install modules run: npm ci - name: Run tests env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} - run: | - ./cc-test-reporter before-build - npm run test - ./cc-test-reporter after-build --exit-code $? \ No newline at end of file + run: npm run test + - name: Submit to Codecov + uses: codecov/codecov-action@v1 \ No newline at end of file