Skip to content

Commit

Permalink
publish action should be dependent on stubs tests (#1718)
Browse files Browse the repository at this point in the history
  • Loading branch information
madhur-ob authored Feb 5, 2024
1 parent 7240235 commit 3bbde92
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ on:
jobs:
test:
uses: './.github/workflows/test.yml'
test-stubs:
uses: './.github/workflows/test-stubs.yml'
deploy:
needs: test
needs: [test, test-stubs]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
Expand Down

0 comments on commit 3bbde92

Please sign in to comment.