Skip to content

Commit f94fa5c

Browse files
GQL-95: Update test ci test rules to make it easier to update node next time around
GQL-95: Fix indent GQL-95: Fix yml syntax GQL-95: Actually fix the yaml now that I have an extension on VS code
1 parent 7267a45 commit f94fa5c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ jobs:
6969
uses: codecov/codecov-action@v4
7070
env:
7171
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
72+
tests-passed:
73+
needs: ['jest', 'python-test']
74+
runs-on: ubuntu-latest
75+
steps:
76+
- name: All Tests Have Passed
77+
run: 'echo true'
7278

7379
python-test:
7480
runs-on: ubuntu-latest
@@ -90,7 +96,7 @@ jobs:
9096
working-directory: ./src/earthdataVarinfo
9197
deploy:
9298
if: success() && github.ref == 'refs/heads/main' # only run on main success
93-
needs: [jest, python-test] # only run after jest and python-test jobs complete
99+
needs: [tests-passed] # only run after all test jobs complete
94100
runs-on: ubuntu-latest
95101
steps:
96102
- name: Checkout code

0 commit comments

Comments
 (0)