Skip to content

Commit

Permalink
Merge pull request #141 from dappnode/diego/add-e2e-tests
Browse files Browse the repository at this point in the history
Add e2e tests
  • Loading branch information
pablomendezroyo authored May 12, 2023
2 parents b86388a + 6e40906 commit 59755d1
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 13 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Test"
on:
pull_request:
branches:
- "master"
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
build-test:
runs-on: ubuntu-latest
name: Build test
steps:
- uses: actions/checkout@v2
- run: npx @dappnode/dappnodesdk build --skip_save

e2e-test:
runs-on: mainnet
needs: build-test
name: End to end tests
steps:
- uses: actions/checkout@v2
- run: npx @dappnode/dappnodesdk@latest github-action test-end-to-end --errorLogsTimeout 120 --healthCheckUrl http://nethermind.public.dappnode:8545 --network mainnet
13 changes: 0 additions & 13 deletions .github/workflows/test_build.yml

This file was deleted.

0 comments on commit 59755d1

Please sign in to comment.