Skip to content

Commit f40683f

Browse files
Corrected the dependencies between GitHub Actions workflow steps
1 parent 2128119 commit f40683f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/CI-CD.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,9 @@ jobs:
106106
name: Code Coverage
107107
runs-on: ubuntu-latest
108108
timeout-minutes: 10
109-
needs: test
109+
needs:
110+
- node_tests
111+
- browser_tests
110112
steps:
111113
- name: Let Coveralls know that all tests have finished
112114
uses: coverallsapp/github-action@v1.0.1
@@ -119,7 +121,9 @@ jobs:
119121
if: github.ref == 'refs/heads/master'
120122
runs-on: ubuntu-latest
121123
timeout-minutes: 10
122-
needs: test
124+
needs:
125+
- node_tests
126+
- browser_tests
123127

124128
steps:
125129
- name: Checkout source

0 commit comments

Comments
 (0)