Skip to content

Commit ca4ac87

Browse files
committed
publish action should be dependent on stubs tests
1 parent 81d8909 commit ca4ac87

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/publish.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ on:
55
jobs:
66
test:
77
uses: './.github/workflows/test.yml'
8+
test-stubs:
9+
uses: './.github/workflows/test-stubs.yml'
810
deploy:
9-
needs: test
11+
needs: [test, test-stubs]
1012
runs-on: ubuntu-latest
1113
steps:
1214
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0

0 commit comments

Comments
 (0)