From f47c9794ca69a0785664e6288234ac9fa14c927b Mon Sep 17 00:00:00 2001 From: Iain Sproat <68657+iainsproat@users.noreply.github.com> Date: Tue, 18 Feb 2025 13:05:59 +0000 Subject: [PATCH] chore(ci): re-enable codecov (#3502) --- .circleci/config.yml | 7 ++++--- codecov.yml | 4 ++++ 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 codecov.yml diff --git a/.circleci/config.yml b/.circleci/config.yml index 02d57b6d6..6b78f11d7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 orbs: snyk: snyk/snyk@2.0.3 - # codecov: codecov/codecov@4.1.0 + codecov: codecov/codecov@5.0.3 workflows: test-build: @@ -20,6 +20,7 @@ workflows: context: - speckle-server-licensing - stripe-integration + - speckle-server-codecov filters: &filters-allow-all tags: # run tests for any commit on any branch, including any tags @@ -512,8 +513,8 @@ jobs: command: yarn test:report working_directory: 'packages/server' - # - codecov/upload: - # file: packages/server/coverage/lcov.info + - codecov/upload: + files: packages/server/coverage/lcov.info - run: name: Introspect GQL schema for subsequent checks diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 000000000..9ebf3bec0 --- /dev/null +++ b/codecov.yml @@ -0,0 +1,4 @@ +codecov: + notify: + notify_error: true + require_ci_to_pass: false