From 43465adc57d686d9e5b7313e3cbad975d1b690dd Mon Sep 17 00:00:00 2001 From: Jonas Geertsen Lund Date: Wed, 6 Nov 2024 08:17:37 +0100 Subject: [PATCH] Fix GitHub action: - install Protoc - build protos --- .github/workflows/run-tests.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 160fdea..7aa96b1 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -20,5 +20,13 @@ jobs: - name: Install dependencies run: npm install + - name: Install Protoc + run: sudo apt-get install -y protobuf-compiler + + - name: Build protos + run: | + mkdir protos + npm run build:protos:mac + - name: Run Jest tests run: npm run test