From 334a82e3e1ef8e159b82d67017f7b46d33ec56e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Carranza=20V=C3=A9lez?= Date: Fri, 9 Sep 2022 09:48:26 -0300 Subject: [PATCH] ci: run e2e on local nitro node --- .github/workflows/e2e.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index e381e7906..00ea89986 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -22,4 +22,10 @@ jobs: - name: Install packages run: yarn install --non-interactive --frozen-lockfile - name: Run e2e tests - run: ADDRESS_BOOK=addresses.json yarn test:e2e + run: | + git clone https://github.com/offchainlabs/nitro + pushd nitro + git submodule update --init --recursive + ./test-node.bash --init --detach + popd + NETWORK=localnitro ADDRESS_BOOK=addresses.json yarn test:e2e