Skip to content

Commit

Permalink
ci: prepack to check dep tree
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed May 20, 2024
1 parent 8805106 commit 810b229
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -321,3 +321,11 @@ jobs:
- name: pack
# Cannot use yarn lerna run pack
run: yarn lerna exec yarn pack

# Prepack (without cleanup per package) to ensure that type resolution in
# dependent packages continues to work when the typedefs are generated by
# their upstream packages. This helps avoid a situation in which the types
# only resolve because of the state of the local filesystem, and files
# when imported in an NPM node_modules tree.
- name: Prepack packages
run: yarn lerna run --reject-cycles --concurrency 1 prepack

0 comments on commit 810b229

Please sign in to comment.