Skip to content

Commit

Permalink
ci: sync and use script check-source-state
Browse files Browse the repository at this point in the history
  • Loading branch information
devmatteini committed Dec 6, 2024
1 parent bdc1128 commit 9f862c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
pnpm codegen
- name: Check source state
run: git add packages/*/src && git diff-index --cached HEAD --exit-code packages/*/src
run: pnpm check-source-state

- name: Types
run: |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"dtslint-clean": "dtslint --clean",
"changeset-version": "changeset version && node scripts/version.mjs",
"changeset-publish": "pnpm lint-fix && pnpm build && TEST_DIST= pnpm vitest && changeset publish",
"check-source-state": "git add src && git diff-index --cached HEAD --exit-code src"
"check-source-state": "git add packages/*/src && git diff-index --cached HEAD --exit-code packages/*/src"
},
"resolutions": {
"dependency-tree": "^10.0.9",
Expand Down

0 comments on commit 9f862c6

Please sign in to comment.