From 40c1f8cd6e74466cd7baeff3fd81586c1bd08e28 Mon Sep 17 00:00:00 2001 From: Roland Sherwin Date: Mon, 16 Dec 2024 19:11:50 +0530 Subject: [PATCH] chore(ci): add launchpad tests to ci --- .github/workflows/merge.yml | 4 ++++ .github/workflows/nightly.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 60faed6af6..d426b66cd5 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -134,6 +134,10 @@ jobs: - name: Run node tests timeout-minutes: 25 run: cargo test --release --package ant-node --lib + + - name: Run launchpad tests + timeout-minutes: 25 + run: cargo test --release --package node-launchpad # The `can_store_after_restart` can be executed with other package tests together and passing # on local machine. However keeps failing (when executed together) on CI machines. diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 23a9b78f99..8b4cc22cce 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -252,6 +252,10 @@ jobs: timeout-minutes: 25 run: cargo test --release --package ant-bootstrap + - name: Run launchpad tests + timeout-minutes: 25 + run: cargo test --release --package node-launchpad + - name: Run node tests timeout-minutes: 25 run: cargo test --release --package ant-node --lib