From de121c3a65f553d2f26b9bf226c6c01dee5c007e Mon Sep 17 00:00:00 2001 From: Pablo Mendez Date: Mon, 17 Apr 2023 17:23:05 +0200 Subject: [PATCH 1/3] add end2end test --- .github/workflows/main.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9a585db..dd3720b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,6 +18,15 @@ jobs: - uses: actions/checkout@v2 - run: npx @dappnode/dappnodesdk build --skip_save + e2e-test: + runs-on: packages + needs: build-test + if: github.event_name != 'push' + name: End to end test + steps: + - uses: actions/checkout@v2 + - run: npx @dappnode/dappnodesdk github-action test-end-to-end --errorLogsTimeout 30 --healthCheckUrl http://rotki.dappnode:80 + release: name: Release runs-on: ubuntu-latest From 43645116c4ef57e92d524a740cf8a7660f8a9409 Mon Sep 17 00:00:00 2001 From: Pablo Mendez Date: Wed, 19 Apr 2023 17:12:30 +0200 Subject: [PATCH 2/3] rename job --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dd3720b..20bde29 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,7 +22,7 @@ jobs: runs-on: packages needs: build-test if: github.event_name != 'push' - name: End to end test + name: End to end tests steps: - uses: actions/checkout@v2 - run: npx @dappnode/dappnodesdk github-action test-end-to-end --errorLogsTimeout 30 --healthCheckUrl http://rotki.dappnode:80 From 7f388e787ccd8262de8c2a5723012e9683cffa38 Mon Sep 17 00:00:00 2001 From: Pablo Mendez Date: Thu, 20 Apr 2023 09:39:52 +0200 Subject: [PATCH 3/3] remove default port --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 20bde29..6dea7ae 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,7 +25,7 @@ jobs: name: End to end tests steps: - uses: actions/checkout@v2 - - run: npx @dappnode/dappnodesdk github-action test-end-to-end --errorLogsTimeout 30 --healthCheckUrl http://rotki.dappnode:80 + - run: npx @dappnode/dappnodesdk github-action test-end-to-end --errorLogsTimeout 30 --healthCheckUrl http://rotki.dappnode release: name: Release