Skip to content

Commit 0ef9aae

Browse files
committed
refactor: Add shrinkwrap checks to the ci workflow
1 parent 56ce376 commit 0ef9aae

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/github-ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,9 @@ jobs:
5151
- name: Generate CLI documentation
5252
working-directory: packages/documentation
5353
run: npm run generate-cli-doc
54+
55+
- name: Check shrinkwrap integrity
56+
working-directory: packages/shrinkwrap-extractor
57+
run: |
58+
npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
59+
npm run unit # The lint is done generally for the whole repo, so only unit tests are needed here

0 commit comments

Comments
 (0)