Test checks rbproto for diff and prettier

This commit is contained in:
2024-05-21 16:57:58 -06:00
parent 81742efdcb
commit 5bd14cf6bc
2 changed files with 7 additions and 1 deletions

View File

@@ -4,6 +4,12 @@ git ls-files | xargs md5sum > before.txt
yarn install
yarn graphql-codegen
prettier ./src --write
for proto in $(find ./rbproto -iname '*.proto'); do
name=$(basename "$proto" .proto)
protoc -I=./rbproto --python_out=./rbproto/python --pyi_out=./rbproto/python ./rbproto/shot.proto
yarn pbjs ./rbproto/shot.proto --ts ./rbproto/ts/shot.ts
done
prettier ./rbproto --write
git ls-files | xargs md5sum > after.txt