From ce3e5e5c125f2127052c81e3cdd60c9aedee46af Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Fri, 3 May 2024 11:31:11 -0700 Subject: [PATCH] ci: update tests workflow --- .github/workflows/tests.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7b0e1d07..ff114a8c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -85,6 +85,7 @@ jobs: - name: "🪪 .ENV › Generate" id: task_initialize_npm_env_generate + continue-on-error: true run: | npm run keeweb:generate @@ -94,6 +95,7 @@ jobs: - name: "🪪 .ENV › Get" id: task_initialize_dotenv_get + if: steps.task_initialize_npm_env_generate.outcome == 'success' uses: falti/dotenv-action@v1 # --------------------------------------------------------------------------------------- @@ -102,6 +104,7 @@ jobs: - name: "🪪 .ENV › Read" id: task_dotenv_debug_print + if: steps.task_initialize_npm_env_generate.outcome == 'success' run: | echo "VER: ${{ steps.task_initialize_dotenv_get.outputs.VERSION }}" echo "GUID: ${{ steps.task_initialize_dotenv_get.outputs.GUID }}" @@ -162,6 +165,7 @@ jobs: - name: "🕘 NPM › Coverage" id: task_lint_npm_coverage + if: always() run: | npm run coverage @@ -171,6 +175,7 @@ jobs: - name: "📝 Upload Coverage Reports › Codecov" id: task_lint_codecov_upload + if: steps.task_lint_npm_coverage.outcome == 'success' uses: codecov/codecov-action@v4.0.1 with: token: ${{ secrets.CODECOV_TOKEN }}