this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci(ts): fix

+8 -1
+8 -1
.gitlab-ci.yml
··· 32 32 - just build 33 33 - just gen_typescript 34 34 script: 35 + - cp events.go events_original.go 35 36 - | 36 - for file in {events.go,typescript/*.ts}; do 37 + if ! diff -q events.go events_original.go; then 38 + echo "events.go changed, just gen_typescript and commit the changes" 39 + exit 1 40 + fi 41 + - rm events_original.go 42 + - | 43 + for file in typescript/*.ts; do 37 44 if ! diff -q $file typescript_original/$(basename $file); then 38 45 diff typescript_original/$(basename $file) $file 39 46 echo "Generated file $file is different from original, please run 'just gen_typescript' and commit the changes"