From e993343a1c286d70851515b460235eb40c42d8fc Mon Sep 17 00:00:00 2001 From: Sergey Timoshin Date: Sun, 22 Dec 2024 15:38:17 +0000 Subject: [PATCH] ci: add CLI build step to forester tests workflow --- .github/workflows/forester-tests.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/forester-tests.yml b/.github/workflows/forester-tests.yml index 26d1e7a8e..cef9f07ab 100644 --- a/.github/workflows/forester-tests.yml +++ b/.github/workflows/forester-tests.yml @@ -39,12 +39,13 @@ jobs: - name: Setup and build uses: ./.github/actions/setup-and-build + - name: Build CLI + run: | + source ./scripts/devenv.sh + npx nx build @lightprotocol/zk-compression-cli + - name: Run forester tests run: | source ./scripts/devenv.sh cd forester - RUSTFLAGS="--cfg tokio_unstable -D warnings" cargo test --package forester -- --test-threads=1 --nocapture - - - name: Setup tmate session - uses: mxschmitt/action-tmate@v3 - + RUSTFLAGS="--cfg tokio_unstable -D warnings" cargo test --package forester -- --test-threads=1 --nocapture \ No newline at end of file