From 21b591328283b7d2854be48026bcd2624bf8016d Mon Sep 17 00:00:00 2001 From: Chris Buckland Date: Mon, 2 Sep 2024 16:08:07 +0100 Subject: [PATCH] Test tokenbridge and l3node startups --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 35dc8f6..efd1c3b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,8 @@ jobs: strategy: matrix: pos: [true, false] + l3node: [true, false] + tokenbridge: [true, false] steps: - name: Checkout @@ -36,4 +38,4 @@ jobs: restore-keys: ${{ runner.os }}-buildx- - name: Startup Nitro testnode - run: ${{ github.workspace }}/.github/workflows/testnode.bash ${{ matrix.pos == true && '--pos' || '' }} + run: ${{ github.workspace }}/.github/workflows/testnode.bash --init-force ${{ matrix.l3node == true && '--l3node' || '' }} ${{ matrix.tokenbridge == true && '--tokenbridge' || '--no-tokenbridge' }} --no-simple --detach ${{ matrix.pos == true && '--pos' || '' }}