From 8db22b4697490f35b168d0a4f73896f28a453918 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Tue, 20 Apr 2021 10:02:47 +1000 Subject: [PATCH] Check in protobuf generated files So that developers do not have to install protobuf suite by default. --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e832edb58..5ec556e31c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,6 +77,11 @@ jobs: - name: build run: npm run build + - name: Check no proto files changed + shell: bash + run: | + [ $(git status --short --ignore-submodules|wc -l) -eq 0 ] + - name: test run: npm run test