Skip to content

Commit 0d97b23

Browse files
authored
Merge pull request #23 from sparksuite/fix-missing-needs
Fix missing `needs` in GitHub workflow
2 parents 64d34f3 + 06a2b0e commit 0d97b23

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/main.yml

+4
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,10 @@ jobs:
8181
publish:
8282
name: Publish to npm
8383
runs-on: ubuntu-latest
84+
needs:
85+
- compile
86+
- lint
87+
- test
8488
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
8589
steps:
8690
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)