Skip to content

Commit

Permalink
Don't publish badly typed code
Browse files Browse the repository at this point in the history
Code that fails type-check should not be published, similarly to how
code that fails linting is already not published.
  • Loading branch information
victorlin committed Nov 21, 2024
1 parent 234fee3 commit ff0e7db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
publish:
if: ${{ github.ref == 'refs/heads/release' }}
needs: [build-and-smoke-test, unit-test, lint, check-lockfile]
needs: [build-and-smoke-test, unit-test, lint, type-check, check-lockfile]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit ff0e7db

Please sign in to comment.