Skip to content

Commit c2ec4cb

Browse files
authored
chore: move update-version to ci
1 parent 7a9f553 commit c2ec4cb

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ci.yaml

+10-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,13 @@ jobs:
3737
- name: typos-action
3838
uses: crate-ci/[email protected]
3939
- name: Lint
40-
run: bun lint
40+
run: |
41+
bun lint
42+
# check for version changes
43+
./update-version.sh
44+
if [[ `git status --porcelain` ]]; then
45+
echo "Version mismatch. Please run ./update-version.sh"
46+
exit 1
47+
else
48+
echo "No changes detected."
49+
fi

0 commit comments

Comments
 (0)