From 551db5d561b6644ee26f019f114c36bc75ccf9fd Mon Sep 17 00:00:00 2001 From: "Adolfo R. Brandes" Date: Thu, 13 Jun 2024 20:28:32 -0300 Subject: [PATCH] build: follow the org's codecov-action pattern Follow the codecov-action pattern established in https://openedx.atlassian.net/wiki/spaces/COMM/pages/3438280709/Adding+Codecov. --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a09f0a3..66e24735 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,5 +31,6 @@ jobs: run: npm run i18n_extract - name: Coverage uses: codecov/codecov-action@v4 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + with: + token: ${{ secrets.CODECOV_TOKEN }} + fail_ci_if_error: true