Skip to content

Commit

Permalink
GQL-95: Update test ci test rules to make it easier to update node ne…
Browse files Browse the repository at this point in the history
…xt time around

GQL-95: Fix indent
  • Loading branch information
eudoroolivares2016 committed Dec 4, 2024
1 parent 7267a45 commit 885203c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 885203c

Please sign in to comment.