From 885203c2e108e507fd33ea6de9e61ecf633b486e Mon Sep 17 00:00:00 2001 From: Ed Olivares <34591886+eudoroolivares2016@users.noreply.github.com> Date: Wed, 4 Dec 2024 13:10:35 -0500 Subject: [PATCH] GQL-95: Update test ci test rules to make it easier to update node next time around GQL-95: Fix indent --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d85826e48..ef5377898 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,6 +69,12 @@ jobs: uses: codecov/codecov-action@v4 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + tests-passed: + needs: [jest, python-test] + runs-on: ubuntu-latest + steps: + - name: All Tests Have Passed + run: 'echo true' python-test: runs-on: ubuntu-latest @@ -90,7 +96,7 @@ jobs: working-directory: ./src/earthdataVarinfo deploy: if: success() && github.ref == 'refs/heads/main' # only run on main success - needs: [jest, python-test] # only run after jest and python-test jobs complete + needs: [tests-passed] # only run after all test jobs complete runs-on: ubuntu-latest steps: - name: Checkout code