From e4659e1fc838165952bf74d91aee9fa9ede9e146 Mon Sep 17 00:00:00 2001 From: Pablo Mendez Date: Thu, 20 Apr 2023 09:51:20 +0200 Subject: [PATCH 1/3] add end to end test --- .github/workflows/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9a585db..46a444b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,6 +18,14 @@ 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 tests + steps: + - uses: actions/checkout@v2 + release: name: Release runs-on: ubuntu-latest From 84902f979aad48d2e4a07e1edb39abd30e0fcd21 Mon Sep 17 00:00:00 2001 From: Pablo Mendez Date: Thu, 20 Apr 2023 09:54:31 +0200 Subject: [PATCH 2/3] complete test --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 46a444b..6dea7ae 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,6 +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 release: name: Release From bdf8b57ff20b94badd993af8e5ba8a6c47eb4484 Mon Sep 17 00:00:00 2001 From: Pablo Mendez Date: Thu, 20 Apr 2023 10:02:45 +0200 Subject: [PATCH 3/3] use latest --- .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 6dea7ae..c8ed21c 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 + - run: npx @dappnode/dappnodesdk@latest github-action test-end-to-end --errorLogsTimeout 30 --healthCheckUrl http://rotki.dappnode release: name: Release