Fixing CI builds
This commit is contained in:
parent
5c0a4e7c5a
commit
398ca1760b
8
.github/workflows/continuous_integration.yml
vendored
8
.github/workflows/continuous_integration.yml
vendored
@ -26,6 +26,10 @@ jobs:
|
|||||||
run: yarn install
|
run: yarn install
|
||||||
working-directory: "front"
|
working-directory: "front"
|
||||||
|
|
||||||
|
- name: "Install messages dependencies"
|
||||||
|
run: yarn install
|
||||||
|
working-directory: "messages"
|
||||||
|
|
||||||
- name: "Build"
|
- name: "Build"
|
||||||
run: yarn run build
|
run: yarn run build
|
||||||
env:
|
env:
|
||||||
@ -58,6 +62,10 @@ jobs:
|
|||||||
run: yarn install
|
run: yarn install
|
||||||
working-directory: "back"
|
working-directory: "back"
|
||||||
|
|
||||||
|
- name: "Install messages dependencies"
|
||||||
|
run: yarn install
|
||||||
|
working-directory: "messages"
|
||||||
|
|
||||||
- name: "Build"
|
- name: "Build"
|
||||||
run: yarn run tsc
|
run: yarn run tsc
|
||||||
working-directory: "back"
|
working-directory: "back"
|
||||||
|
@ -15,6 +15,11 @@ message PositionMessage {
|
|||||||
bool moving = 4;
|
bool moving = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message PointMessage {
|
||||||
|
int32 x = 1;
|
||||||
|
int32 y = 2;
|
||||||
|
}
|
||||||
|
|
||||||
message ViewportMessage {
|
message ViewportMessage {
|
||||||
int32 left = 1;
|
int32 left = 1;
|
||||||
int32 top = 2;
|
int32 top = 2;
|
||||||
@ -52,3 +57,12 @@ message BatchMessage {
|
|||||||
string event = 1;
|
string event = 1;
|
||||||
repeated SubMessage payload = 2;
|
repeated SubMessage payload = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message GroupUpdateMessage {
|
||||||
|
int32 groupId = 1;
|
||||||
|
PointMessage position = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
message GroupDeleteMessage {
|
||||||
|
int32 groupId = 1;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user